Browse Source

feat(build) update build toolchain to Node 14 / npm 7 (#10145)

* feat(build) update build toolchain to Node 14 / npm 7

* squash: Updates ljm.

Co-authored-by: Дамян Минков <damencho@jitsi.org>
master
Saúl Ibarra Corretgé 3 years ago
parent
commit
c84e2e6ad8
No account linked to committer's email address
3 changed files with 24340 additions and 130 deletions
  1. 2
    1
      .github/workflows/ci.yml
  2. 24335
    126
      package-lock.json
  3. 3
    3
      package.json

+ 2
- 1
.github/workflows/ci.yml View File

10
     - uses: actions/checkout@v2
10
     - uses: actions/checkout@v2
11
     - uses: actions/setup-node@v1
11
     - uses: actions/setup-node@v1
12
       with:
12
       with:
13
-        node-version: '12.x'
13
+        node-version: '14.x'
14
+    - run: npm i -g npm@7
14
     - run: npm install
15
     - run: npm install
15
     - name: Check if the git repository is clean
16
     - name: Check if the git repository is clean
16
       run: exit $( git status --porcelain --untracked-files=no | head -255 | wc -l )
17
       run: exit $( git status --porcelain --untracked-files=no | head -255 | wc -l )

+ 24335
- 126
package-lock.json
File diff suppressed because it is too large
View File


+ 3
- 3
package.json View File

60
     "jquery-i18next": "1.2.1",
60
     "jquery-i18next": "1.2.1",
61
     "js-md5": "0.6.1",
61
     "js-md5": "0.6.1",
62
     "jwt-decode": "2.2.0",
62
     "jwt-decode": "2.2.0",
63
-    "lib-jitsi-meet": "github:jitsi/lib-jitsi-meet#bf0d5b5ec2da07696fd4ca1702a793bded616740",
63
+    "lib-jitsi-meet": "github:jitsi/lib-jitsi-meet#a5cc2321b8528c3117d366ef198a3428fe5bed67",
64
     "libflacjs": "github:mmig/libflac.js#93d37e7f811f01cf7d8b6a603e38bd3c3810907d",
64
     "libflacjs": "github:mmig/libflac.js#93d37e7f811f01cf7d8b6a603e38bd3c3810907d",
65
     "lodash": "4.17.21",
65
     "lodash": "4.17.21",
66
     "moment": "2.29.1",
66
     "moment": "2.29.1",
156
     "webpack-dev-server": "4.3.1"
156
     "webpack-dev-server": "4.3.1"
157
   },
157
   },
158
   "engines": {
158
   "engines": {
159
-    "node": ">=12.0.0",
160
-    "npm": ">=6.0.0"
159
+    "node": ">=14.0.0",
160
+    "npm": ">=7.0.0"
161
   },
161
   },
162
   "license": "Apache-2.0",
162
   "license": "Apache-2.0",
163
   "scripts": {
163
   "scripts": {

Loading…
Cancel
Save