Skip to content

Commit 93353ea

Browse files
Update all non-major dependencies (minor) (#1026)
1 parent e003891 commit 93353ea

File tree

3 files changed

+1278
-1593
lines changed

3 files changed

+1278
-1593
lines changed

eslint.config.mjs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@ import globals from 'globals';
22

33
import compat from 'eslint-plugin-compat';
44

5+
const GLOBALS_BROWSER_FIX = Object.assign({}, globals.browser, {
6+
AudioWorkletGlobalScope: globals.browser['AudioWorkletGlobalScope ']
7+
});
8+
9+
delete GLOBALS_BROWSER_FIX['AudioWorkletGlobalScope '];
10+
511
export default [
612
{
713
files: ['./assets/scripts/**/*.js'],
814
languageOptions: {
915
globals: {
10-
...globals.browser,
11-
...globals.node
16+
...globals.node,
17+
...GLOBALS_BROWSER_FIX
1218
},
1319
parserOptions: {
1420
ecmaVersion: 2023,

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"critical": "7.2.1",
5555
"css-loader": "7.1.2",
5656
"cssnano": "7.0.6",
57-
"eslint": "9.23.0",
57+
"eslint": "9.24.0",
5858
"eslint-config-recommended": "4.1.0",
5959
"eslint-plugin-compat": "6.0.2",
6060
"mini-css-extract-plugin": "2.9.2",
@@ -71,13 +71,13 @@
7171
"postcss-watch-folder": "2.0.0",
7272
"sass": "1.86.3",
7373
"sass-loader": "16.0.5",
74-
"stylelint": "16.17.0",
74+
"stylelint": "16.18.0",
7575
"stylelint-config-recommended": "16.0.0",
7676
"stylelint-config-standard-scss": "14.0.0",
7777
"stylelint-no-unsupported-browser-features": "8.0.4",
7878
"stylelint-scss": "6.11.1",
7979
"svg-symbol-sprite": "1.5.2",
80-
"webpack": "5.98.0",
80+
"webpack": "5.99.5",
8181
"webpack-cli": "6.0.1",
8282
"webpack-shell-plugin-next": "2.3.2",
8383
"webpack-spritesmith": "1.1.0"

0 commit comments

Comments
 (0)