You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require("gulp-task-maker").task("gulp-tasks/mincss.js",{// (Required) Source can be a single stylesheet// or pattern, or an array of paths or patternssrc: "assets/styles/*.css",// (Required) Destination can be a folder name, or a filename ending in ".css".// The main difference is when building more than one stylesheet.// - Filename ending in ".css": the result will be concatenated// - Otherwise: original filenames are used, and put in the destination folder.dest: "public/css/main.css",// (Optional; defaults to false)// File patterns to watch for changeswatch: true,// (Optional; defaults to true)// Should we minify with csso?minify: true,// (Optional; pass a filename to use)// Should we concatenate all resulting files?concat: undefined,// (Optional; defaults to "."; false to disable)// Where should we write sourcemaps (relative to "dest")sourcemaps: ".",// (Optional; defaults shown below; false to disable)// gulp-autoprefixer optionsautoprefixer: {flexbox: "no-2009",grid: false},// (Optional; defaults shown below)// gulp-csso optionscsso: {restructure: false}})