Skip to content

Commit 225bb41

Browse files
committed
Update lodash to 4.0.0
1 parent 14b93f2 commit 225bb41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function normalizeOptions(options) {
3333
var pathToBin = path.join(process.cwd(), 'node_modules', '.bin')
3434
var pathName = /^win/.test(process.platform) ? 'Path' : 'PATH'
3535
var newPath = pathToBin + path.delimiter + process.env[pathName]
36-
options.env = _.extend(process.env, _.zipObject([[pathName, newPath]]), options.env)
36+
options.env = _.extend(process.env, _.fromPairs([[pathName, newPath]]), options.env)
3737

3838
return options
3939
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"dependencies": {
3636
"async": "~1.5.0",
3737
"gulp-util": "~3.0.7",
38-
"lodash": "^3.10.1",
38+
"lodash": "^4.0.0",
3939
"through2": "~2.0.0"
4040
}
4141
}

0 commit comments

Comments
 (0)