gulp-ignore
Advanced tools
Comparing version 1.2.1 to 2.0.0
{ | ||
"name": "gulp-ignore", | ||
"description": "Include or exclude gulp files from the stream based on a condition", | ||
"version": "1.2.1", | ||
"version": "2.0.0", | ||
"homepage": "https://github.com/robrich/gulp-ignore", | ||
@@ -18,12 +18,12 @@ "repository": "git://github.com/robrich/gulp-ignore.git", | ||
"dependencies": { | ||
"through2": "~0.6.2", | ||
"gulp-match": "~0.2.1" | ||
"through2": "^2.0.0", | ||
"gulp-match": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"jshint": "^2.5.6", | ||
"mocha": "^1.21.4", | ||
"should": "^4.0.4" | ||
"jshint": "^2.8.0", | ||
"mocha": "^2.3.3", | ||
"should": "^7.1.0" | ||
}, | ||
"scripts": { | ||
"test": "mocha && jshint ./index.js ./test/." | ||
"test": "mocha && jshint ." | ||
}, | ||
@@ -33,8 +33,3 @@ "engines": { | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "http://github.com/robrich/gulp-ignore/raw/master/LICENSE" | ||
} | ||
] | ||
"license": "MIT" | ||
} |
@@ -18,3 +18,3 @@ gulp-ignore ![status](https://secure.travis-ci.org/robrich/gulp-ignore.png?branch=master) | ||
gulp.task('task', function() { | ||
gulp.src(['./*.js', '!./node_modules/**']) | ||
gulp.src(['./**/*.js', '!./node_modules/**']) | ||
.pipe(uglify()) | ||
@@ -43,3 +43,3 @@ .pipe(gulp.dest('./dist/')); | ||
gulp.task('task', function() { | ||
gulp.src('./*.js') | ||
gulp.src('./**/*.js') | ||
.pipe(jshint()) | ||
@@ -68,3 +68,3 @@ .pipe(gulpIgnore.exclude(condition)) | ||
gulp.task('task', function() { | ||
gulp.src('./*.js') | ||
gulp.src('./**/*.js') | ||
.pipe(jshint()) | ||
@@ -71,0 +71,0 @@ .pipe(gulpIgnore.include(condition)) |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13
53049
+ Addedbalanced-match@1.0.2(transitive)
+ Addedbrace-expansion@1.1.11(transitive)
+ Addedconcat-map@0.0.1(transitive)
+ Addedgulp-match@1.1.0(transitive)
+ Addedisarray@1.0.0(transitive)
+ Addedminimatch@3.1.2(transitive)
+ Addedprocess-nextick-args@2.0.1(transitive)
+ Addedreadable-stream@2.3.8(transitive)
+ Addedsafe-buffer@5.1.2(transitive)
+ Addedstring_decoder@1.1.1(transitive)
+ Addedthrough2@2.0.5(transitive)
+ Addedutil-deprecate@1.0.2(transitive)
- Removedgulp-match@0.2.1(transitive)
- Removedisarray@0.0.1(transitive)
- Removedlru-cache@2.7.3(transitive)
- Removedminimatch@1.0.0(transitive)
- Removedreadable-stream@1.0.34(transitive)
- Removedsigmund@1.0.1(transitive)
- Removedstring_decoder@0.10.31(transitive)
- Removedthrough2@0.6.5(transitive)
Updatedgulp-match@^1.0.0
Updatedthrough2@^2.0.0