Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-ignore

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-ignore - npm Package Compare versions

Comparing version 1.2.1 to 2.0.0

.jshintignore

21

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc