Skip to content

Commit 4133069

Browse files
committed
Update devDependencies and switch to Node.js 16/npm 8
* @babel/core ^7.15.5 → ^7.15.8 * @babel/preset-env ^7.15.6 → ^7.15.8 * @rollup/plugin-commonjs ^20.0.0 → ^21.0.1 * @rollup/plugin-node-resolve ^13.0.5 → ^13.0.6 * autoprefixer ^10.3.6 → ^10.3.7 * babel-plugin-istanbul ^6.0.0 → ^6.1.1 * clean-css-cli ^5.3.3 → ^5.4.2 * eslint ^7.32.0 → ^8.0.0 * eslint-config-xo ^0.38.0 → ^0.39.0 * eslint-plugin-import ^2.24.2 → ^2.25.1 * eslint-plugin-qunit ^6.2.0 → ^7.0.0 * eslint-plugin-unicorn ^36.0.0 → ^37.0.1 * karma ^6.3.4 → ^6.3.5 * linkinator ^2.14.0 → ^2.14.4 * nodemon ^2.0.13 → ^2.0.14 * postcss ^8.3.8 → ^8.3.11 * postcss-cli ^9.0.0 → ^9.0.1 * rollup ^2.57.0 → ^2.58.0 * stylelint-config-twbs-bootstrap ^2.2.3 → ^2.2.4 * vnu-jar 21.9.2 → 21.10.12
1 parent fc492ed commit 4133069

File tree

10 files changed

+14976
-1245
lines changed

10 files changed

+14976
-1245
lines changed

.github/workflows/browserstack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
env:
77
FORCE_COLOR: 2
8-
NODE: 14
8+
NODE: 16
99

1010
jobs:
1111
browserstack:

.github/workflows/bundlewatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
FORCE_COLOR: 2
11-
NODE: 14
11+
NODE: 16
1212

1313
jobs:
1414
bundlewatch:

.github/workflows/css.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
FORCE_COLOR: 2
11-
NODE: 14
11+
NODE: 16
1212

1313
jobs:
1414
css:

.github/workflows/dart-sass.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
FORCE_COLOR: 2
11-
NODE: 14
11+
NODE: 16
1212

1313
jobs:
1414
css:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
FORCE_COLOR: 2
11-
NODE: 14
11+
NODE: 16
1212

1313
jobs:
1414
docs:

.github/workflows/js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Run Coveralls
4242
uses: coverallsapp/github-action@1.1.3
43-
if: matrix.node == 14
43+
if: matrix.node == 16
4444
with:
4545
github-token: "${{ secrets.GITHUB_TOKEN }}"
4646
path-to-lcov: "./js/coverage/lcov.info"

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
FORCE_COLOR: 2
11-
NODE: 14
11+
NODE: 16
1212

1313
jobs:
1414
lint:

js/src/util.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ const Util = {
6868

6969
getUID(prefix) {
7070
do {
71+
// eslint-disable-next-line no-bitwise
7172
prefix += ~~(Math.random() * MAX_UID) // "~~" acts like a faster Math.floor() here
7273
} while (document.getElementById(prefix))
7374

0 commit comments

Comments
 (0)