Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pmendelski committed Jun 23, 2015
1 parent 68919ea commit 73e7fed
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
7 changes: 3 additions & 4 deletions gulpfile.js
Expand Up @@ -8,7 +8,7 @@ var gulp = require('gulp'),
path = require('path'),
fs = require('fs'),
mkdirp = require('mkdirp'),
clean = require('gulp-rimraf'),
del = require('del'),
jscs = require('gulp-jscs'),
istanbul = require('gulp-istanbul');

Expand All @@ -32,9 +32,8 @@ function initTestMode() {
};
}

gulp.task('clean', function() {
return gulp.src('build')
.pipe(clean());
gulp.task('clean', function(done) {
del('build', done);
});

gulp.task('jshint', function() {
Expand Down
34 changes: 17 additions & 17 deletions package.json
@@ -1,7 +1,7 @@
{
"author": "Paweł Mendelski <pawel.mendelski@coditorium.com>",
"name": "swig-loader",
"version": "0.0.8",
"version": "0.1.0",
"description": "Webpack loader for swig templates",
"main": "index.js",
"license": "MIT",
Expand All @@ -23,30 +23,30 @@
"webpack"
],
"dependencies": {
"loader-utils": "^0.2.7",
"loader-utils": "^0.2.10",
"swig": "^1.4.2"
},
"devDependencies": {
"chai": "^2.2.0",
"chai": "^3.0.0",
"chalk": "^1.0.0",
"coveralls": "~2.11.2",
"gulp": "~3.8.11",
"gulp-istanbul": "~0.8.1",
"gulp-jscs": "^1.5.2",
"gulp-jshint": "~1.10.0",
"gulp-mocha": "~2.0.1",
"gulp-rimraf": "^0.1.1",
"del": "^1.2.0",
"gulp": "~3.9.0",
"gulp-istanbul": "~0.10.0",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "~1.11.0",
"gulp-mocha": "~2.1.2",
"gulp-sync": "~0.1.4",
"gulp-util": "~3.0.4",
"js-yaml": "~3.2.7",
"jshint-stylish": "~1.0.1",
"mkdirp": "^0.5.0",
"mocha": "2.2.4",
"mocha-jenkins-reporter": "~0.1.6",
"webpack": "^1.8.5"
"gulp-util": "~3.0.5",
"js-yaml": "~3.3.1",
"jshint-stylish": "~2.0.1",
"mkdirp": "^0.5.1",
"mocha": "2.2.5",
"mocha-jenkins-reporter": "~0.1.9",
"webpack": "^1.9.11"
},
"engines": {
"node": "0.10.x"
"node": ">=0.10"
},
"analyze": "true"
}

0 comments on commit 73e7fed

Please sign in to comment.