Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This pull request adds the lock files generated by npm v5 to this repo. This will lock down the npm dependencies in a manner similar to how Composer locks dependencies.
It also updates a Travis setup script to ensure npm is up to date.
If approved, similar pull requests will be opened for other XDMoD repos.
Motivation and Context
npm v5 automatically generates
package-lock.json
files similar to how Composer generatescomposer.lock
files. Like the latter's lock files, they are designed to ensure that consistent environments are generated across instances and are intended to be checked into source control.Tests Performed
I verified that tools pulled in by npm continue to work, and I verified that the changes to the Travis script work as intended.
Checklist:
I have added tests to cover my changes.