When a buildpack detects a package-lock.json, it should use npm ci when it can because of the improvements over npm install (see: https://docs.npmjs.com/cli/ci.html#description). npm only started support for this in version 5.7.0, so anything below that will need to use npm install.
Description
When a buildpack detects a
package-lock.json
, it should usenpm ci
when it can because of the improvements overnpm install
(see: https://docs.npmjs.com/cli/ci.html#description).npm
only started support for this in version 5.7.0, so anything below that will need to usenpm install
.Includes:
package-lock.json
npm ci
should be used