Skip to content
This repository has been archived by the owner on May 12, 2019. It is now read-only.

Commit

Permalink
Add gulp-shortand dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Jan 4, 2016
1 parent 7bdbdc6 commit 3e46534
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
2 changes: 2 additions & 0 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ uglify = require 'gulp-uglify'
cssmin = require 'gulp-cssmin'
addsrc = require 'gulp-add-src'
changed = require 'gulp-changed'
shortand = require 'gulp-shortand'
pkg = require './package.json'
_s = require 'underscore.string'
prefix = require 'gulp-autoprefixer'
Expand Down Expand Up @@ -69,6 +70,7 @@ gulp.task 'css', ->
.pipe prefix()
.pipe strip
all: true
.pipe shortand()
.pipe cssmin()
.pipe header banner, pkg: pkg
.pipe gulp.dest dist.css
Expand Down
33 changes: 17 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,23 @@
"zen"
],
"devDependencies": {
"browser-sync": "*",
"coffee-script": "*",
"gulp": "*",
"gulp-add-src": "*",
"gulp-autoprefixer": "*",
"gulp-changed": "*",
"gulp-coffee": "*",
"gulp-concat": "*",
"gulp-cssmin": "*",
"gulp-header": "*",
"gulp-minify-css": "*",
"gulp-sass": "*",
"gulp-strip-css-comments": "*",
"gulp-uglify": "*",
"gulp-util": "*",
"underscore.string": "*"
"browser-sync": "latest",
"coffee-script": "latest",
"gulp": "latest",
"gulp-add-src": "latest",
"gulp-autoprefixer": "latest",
"gulp-changed": "latest",
"gulp-coffee": "latest",
"gulp-concat": "latest",
"gulp-cssmin": "latest",
"gulp-header": "latest",
"gulp-minify-css": "latest",
"gulp-sass": "latest",
"gulp-shortand": "latest",
"gulp-strip-css-comments": "latest",
"gulp-uglify": "latest",
"gulp-util": "latest",
"underscore.string": "latest"
},
"engines": {
"node": "~0.12.x"
Expand Down

0 comments on commit 3e46534

Please sign in to comment.