Sam
Sam

Reputation: 30334

Build error Upgrade to lodash@^3.0.0

My build server on Visual Studio Team Services (aka VSO) is failing with the following error message. Any idea how I can fix this?

npm WARN deprecated [email protected]: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^3.0.0.

The error is caused by the following line in my project.json file

"prepublish": [ "npm install", "bower install", "gulp clean", "gulp min" ]

Any suggestions on how to fix it?

Upvotes: 0

Views: 2881

Answers (2)

user2823361
user2823361

Reputation: 111

Update version using below command :

$npm update lodash@3

Upvotes: 0

Sunrise
Sunrise

Reputation: 185

Current version of Gulp 3.9.0 - in need of updating dependencies. You can try to do it yourself or wait for new version.

Upvotes: 0

Related Questions