From 39c1df41a751da375ceb1db522df03d11704a447 Mon Sep 17 00:00:00 2001 From: Simon Busborg Date: Mon, 10 Oct 2016 09:59:19 +0200 Subject: [PATCH] =?UTF-8?q?Updated=20packages=20and=20dependency=20version?= =?UTF-8?q?s=20for=20gulp,=20outcommented=20=E2=80=9Ccombine=20media=20que?= =?UTF-8?q?ries=E2=80=9D=20that=20broke=20the=20task=20runner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OurUmbraco.Client/gulpfile.js | 4 ++-- OurUmbraco.Client/package.json | 21 ++++++++------------- 2 files changed, 10 insertions(+), 15 deletions(-) diff --git a/OurUmbraco.Client/gulpfile.js b/OurUmbraco.Client/gulpfile.js index 07df1325..be5ac996 100644 --- a/OurUmbraco.Client/gulpfile.js +++ b/OurUmbraco.Client/gulpfile.js @@ -1,4 +1,4 @@ -var gulp = require('gulp'), +var gulp = require('gulp'), gutil = require('gulp-util'), sass = require('gulp-sass'), jshint = require('gulp-jshint'), @@ -57,7 +57,7 @@ gulp.task('css', function () { .pipe(sass()) .on('error', gutil.log) .pipe(autoprefixer('last 1 version', 'ie 9', 'ios 7')) - .pipe(cmq({log: true})) + // .pipe(cmq({log: true})) .pipe(rename({suffix: '.min'})) .pipe(minifyCss()) .pipe(gulp.dest(settings.build + '/assets/css')) diff --git a/OurUmbraco.Client/package.json b/OurUmbraco.Client/package.json index 3854ea59..fbb1615d 100644 --- a/OurUmbraco.Client/package.json +++ b/OurUmbraco.Client/package.json @@ -7,17 +7,16 @@ "dependencies": { }, "devDependencies": { - "gulp": "3.8.x", - "gulp-util": "2.2.x", + "gulp": "^3.9.1", + "gulp-util": "3.0.x", "gulp-watch": "0.6.x", "gulp-minify-css": "1.1.x", - "node-sass": "3.2.x", - "gulp-sass": "2.0.x", - "gulp-combine-media-queries": "0.1.x", + "gulp-sass": "^2.2.0", + "gulp-combine-media-queries": "0.2.x", "gulp-imagemin": "0.6.x", - "gulp-autoprefixer": "2.3.1", - "gulp-uglify": "0.3.x", - "gulp-jshint": "1.6.x", + "gulp-autoprefixer": "^3.1.0", + "gulp-uglify": "^1.5.3", + "gulp-jshint": "2.0.0", "gulp-concat": "2.2.x", "jshint-stylish": "0.2.x", "gulp-clean": "0.3.x", @@ -28,9 +27,5 @@ "test": "gulp build --verbose" }, "author": "umbraco", - "license": "MIT", - "repository": { - "type": "git", - "url": "http://github.com/devdk/gulp-workflow.git" - } + "license": "MIT" }