Skip to content

Commit

Permalink
Git-ignore npm's package-lock file
Browse files Browse the repository at this point in the history
As of npm 5.0, each `npm install` creates or updates a file named
`packages-lock.json` that contains the complete list of installed
module versions. This file is meant to allow for reproducible builds.

For Tabris.js, there are only dev-dependencies, so the risk of
breakage is relatively low. Moreover, we always want to use the most
recent versions that match the ranges specified in the package.json.

Also, the nightly build should always use the latest versions
available in order to include the latest optimizations (e.g. to
JS minification) and to discover problems early.

Change-Id: Iadc7b951554b073da318cda129119a2b449b11ef
  • Loading branch information
ralfstx authored and Gerrit Code Review committed Dec 12, 2017
1 parent 87deb41 commit 0f7388e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ build/
node_modules/
platforms/
npm-debug.log*
package-lock.json
*~

0 comments on commit 0f7388e

Please sign in to comment.