Created
June 10, 2015 03:15
-
-
Save matthewrwilton/e6b483573ba6c2666d04 to your computer and use it in GitHub Desktop.
Example package.json for creating a Gulp task to minify CSS files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "GulpExamples.Bundling", | |
"version": "1.0.0", | |
"devDependencies": { | |
"gulp": "^3.8.11", | |
"gulp-concat-css": "^2.2.0", | |
"gulp-less": "^3.0.3", | |
"gulp-minify-css" : "^1.1.1", | |
"gulp-sourcemaps": "^1.5.2", | |
"gulp-watch": "^4.2.4" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment