Strider-CD / strider-node

Run Node.js tests in strider
11 stars 13 forks source link

Changed the prepare command to npm install --force #2

Closed TiddoLangerak closed 10 years ago

TiddoLangerak commented 10 years ago

Currently the prepare command runs the regular npm install. However this doesn't update already installed external dependencies. Therefore tests might succeed even though the latest version of a dependency has some changes which breaks the tests. This can result in exporting broken code.

This change forces npm to check all dependencies for updates.

niallo commented 10 years ago

This is correct. Thanks!