Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
RainLoop committed Sep 13, 2016
1 parent 1e287f4 commit 7ffa5af
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 73 deletions.
8 changes: 4 additions & 4 deletions gulpfile.js
Expand Up @@ -316,18 +316,18 @@ gulp.task('css:social', function() {
});

gulp.task('css:main:min', ['css:main'], function() {
var cleanCSS = require('gulp-clean-css');
var csso = require('gulp-csso');
return gulp.src(cfg.paths.staticCSS + cfg.paths.css.main.name)
.pipe(cleanCSS())
.pipe(csso())
.pipe(rename({suffix: '.min'}))
.pipe(eol('\n', true))
.pipe(gulp.dest(cfg.paths.staticCSS));
});

gulp.task('css:social:min', ['css:social'], function() {
var cleanCSS = require('gulp-clean-css');
var csso = require('gulp-csso');
return gulp.src(cfg.paths.staticCSS + cfg.paths.css.social.name)
.pipe(cleanCSS())
.pipe(csso())
.pipe(rename({suffix: '.min'}))
.pipe(eol('\n', true))
.pipe(gulp.dest(cfg.paths.staticCSS));
Expand Down
85 changes: 18 additions & 67 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -65,8 +65,8 @@
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-cached": "^1.1.0",
"gulp-clean-css": "^2.0.7",
"gulp-concat-util": "^0.5.5",
"gulp-csso": "^2.0.0",
"gulp-eol": "^0.1.2",
"gulp-eslint": "^3.0.1",
"gulp-filter": "^4.0.0",
Expand Down Expand Up @@ -99,7 +99,7 @@
"knockout-sortable": "^0.14.1",
"lightgallery": "^1.2.21",
"matchmedia-polyfill": "^0.3.0",
"moment": "^2.14.1",
"moment": "^2.15.0",
"node-fs": "^0.1.7",
"node-notifier": "4.6.1",
"normalize.css": "^4.2.0",
Expand Down

0 comments on commit 7ffa5af

Please sign in to comment.