[Scummvm-git-logs] scummvm-web master -> 6d50b38299fbb8de977f3c77c5dfd68449fa4007

lotharsm mail at serra.me
Wed Oct 13 16:54:39 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-web' repo located at https://github.com/scummvm/scummvm-web .

Summary:
6d50b38299 WEB: install node modules from package-lock.json


Commit: 6d50b38299fbb8de977f3c77c5dfd68449fa4007
    https://github.com/scummvm/scummvm-web/commit/6d50b38299fbb8de977f3c77c5dfd68449fa4007
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2021-10-13T18:54:37+02:00

Commit Message:
WEB: install node modules from package-lock.json

`npm ci` is used during producton installation to install
the packages from package-lock.json.

NPMs default is to install from package.json, updating the
package-lock.json in the process. This circumvents any pins in
package-lock.json and results in a git tree with an uncommitted change.

Changed paths:
    composer.json


diff --git a/composer.json b/composer.json
index b45c74f7..1fa7c2b5 100644
--- a/composer.json
+++ b/composer.json
@@ -41,7 +41,7 @@
     "build": [
       "composer install --no-dev",
       "@build-common",
-      "npm install --production"
+      "npm ci --production"
     ],
     "build-dev": [
       "composer install",




More information about the Scummvm-git-logs mailing list