This commit is contained in:
parent
a16346ee8e
commit
b47d327882
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLWVkaXRvci1zdHlsZS5jc3MiLCJzb3VyY2VzIjpbImN1c3RvbS1lZGl0b3Itc3R5bGUuc2NzcyJdLCJzb3VyY2VzQ29udGVudCI6WyIvL0FkZCB5b3VyIG93biBlZGl0b3Igc3R5bGVzIGhlcmUgb3IgY29tbWVudCBvdXQgdGhlIG5leHQgbGluZSBpZiB5b3Ugd2FudCB0byBwdWxsIGluIHRoZSB3aG9sZSBCb290c3RyYXAgc3R1ZmZcbi8vQGltcG9ydCBcInRoZW1lXCI7ICJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0= */
|
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
/*# sourceMappingURL=custom-editor-style.min.css.map */
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"sources":[],"names":[],"mappings":"","file":"custom-editor-style.min.css","sourcesContent":[]}
|
1898
css/theme.css
1898
css/theme.css
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
11
gulpfile.js
11
gulpfile.js
|
@ -44,11 +44,12 @@ gulp.task( 'scss-for-prod', function() {
|
||||||
.pipe( gulp.dest( paths.css ) )
|
.pipe( gulp.dest( paths.css ) )
|
||||||
.pipe( rename( 'custom-editor-style.css' ) );
|
.pipe( rename( 'custom-editor-style.css' ) );
|
||||||
|
|
||||||
var pipe2 = source.pipe( clone() )
|
var pipe2 = source.pipe( clone() )
|
||||||
.pipe( minifycss() )
|
.pipe( cleanCSS( { compatibility: '*' } ) )
|
||||||
.pipe( rename( { suffix: '.min' } ) )
|
.pipe( rename( { suffix: '.min' } ) )
|
||||||
.pipe( gulp.dest( paths.css ) );
|
.pipe( sourcemaps.write( './' ) )
|
||||||
return merge( pipe1, pipe2 );
|
.pipe( gulp.dest( paths.css ) );
|
||||||
|
return merge( pipe1, pipe2 );
|
||||||
});
|
});
|
||||||
|
|
||||||
// Run:
|
// Run:
|
||||||
|
|
Reference in New Issue