Skip to content

Commit ea07726

Browse files
silverwindlunny
andauthored
Update JS dependencies (go-gitea#16708)
* Update JS dependencies - Update all JS dependencies - Adapt to recent webpack changes - Add new lint rules and fix issues - Regenerate SVGs and update svgo api usage Fixes: go-gitea#16492 * adapt jest config and sort keys Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
1 parent cf43283 commit ea07726

31 files changed

+17681
-15347
lines changed

.eslintrc

+13
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ rules:
125125
import/no-deprecated: [0]
126126
import/no-dynamic-require: [0]
127127
import/no-extraneous-dependencies: [2]
128+
import/no-import-module-exports: [0]
128129
import/no-internal-modules: [0]
129130
import/no-mutable-exports: [2]
130131
import/no-named-as-default-member: [0]
@@ -133,6 +134,7 @@ rules:
133134
import/no-named-export: [0]
134135
import/no-namespace: [0]
135136
import/no-nodejs-modules: [0]
137+
import/no-relative-packages: [0]
136138
import/no-relative-parent-imports: [0]
137139
import/no-restricted-paths: [0]
138140
import/no-self-import: [2]
@@ -365,6 +367,7 @@ rules:
365367
unicorn/no-abusive-eslint-disable: [0]
366368
unicorn/no-array-for-each: [0]
367369
unicorn/no-array-instanceof: [0]
370+
unicorn/no-array-method-this-argument: [2]
368371
unicorn/no-array-push-push: [2]
369372
unicorn/no-console-spaces: [0]
370373
unicorn/no-document-cookie: [2]
@@ -385,6 +388,8 @@ rules:
385388
unicorn/no-unreadable-array-destructuring: [0]
386389
unicorn/no-unsafe-regex: [0]
387390
unicorn/no-unused-properties: [2]
391+
unicorn/no-useless-length-check: [2]
392+
unicorn/no-useless-spread: [2]
388393
unicorn/no-useless-undefined: [0]
389394
unicorn/no-zero-fractions: [2]
390395
unicorn/number-literal-case: [0]
@@ -395,6 +400,7 @@ rules:
395400
unicorn/prefer-array-flat: [2]
396401
unicorn/prefer-array-index-of: [2]
397402
unicorn/prefer-array-some: [2]
403+
unicorn/prefer-at: [0]
398404
unicorn/prefer-dataset: [2]
399405
unicorn/prefer-date-now: [2]
400406
unicorn/prefer-default-parameters: [0]
@@ -408,7 +414,10 @@ rules:
408414
unicorn/prefer-node-protocol: [0]
409415
unicorn/prefer-node-remove: [0]
410416
unicorn/prefer-number-properties: [0]
417+
unicorn/prefer-object-from-entries: [2]
418+
unicorn/prefer-object-has-own: [0]
411419
unicorn/prefer-optional-catch-binding: [2]
420+
unicorn/prefer-prototype-methods: [0]
412421
unicorn/prefer-query-selector: [0]
413422
unicorn/prefer-reflect-apply: [0]
414423
unicorn/prefer-regexp-test: [2]
@@ -420,9 +429,13 @@ rules:
420429
unicorn/prefer-switch: [0]
421430
unicorn/prefer-ternary: [0]
422431
unicorn/prefer-text-content: [2]
432+
unicorn/prefer-top-level-await: [0]
423433
unicorn/prefer-trim-start-end: [2]
424434
unicorn/prefer-type-error: [0]
425435
unicorn/prevent-abbreviations: [0]
436+
unicorn/require-array-join-separator: [2]
437+
unicorn/require-number-to-fixed-digits-argument: [2]
438+
unicorn/require-post-message-target-origin: [0]
426439
unicorn/string-content: [0]
427440
unicorn/throw-new-error: [2]
428441
use-isnan: [2]

build/generate-svg.js

+8-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import fastGlob from 'fast-glob';
2-
import {optimize, extendDefaultPlugins} from 'svgo';
2+
import {optimize} from 'svgo';
33
import {resolve, parse, dirname} from 'path';
44
import fs from 'fs';
55
import {fileURLToPath} from 'url';
@@ -26,18 +26,13 @@ async function processFile(file, {prefix, fullName} = {}) {
2626
}
2727

2828
const {data} = optimize(await readFile(file, 'utf8'), {
29-
plugins: extendDefaultPlugins([
30-
'removeXMLNS',
31-
'removeDimensions',
32-
{
33-
name: 'addClassesToSVGElement',
34-
params: {classNames: ['svg', name]},
35-
},
36-
{
37-
name: 'addAttributesToSVGElement',
38-
params: {attributes: [{'width': '16'}, {'height': '16'}, {'aria-hidden': 'true'}]},
39-
},
40-
]),
29+
plugins: [
30+
{name: 'preset-default'},
31+
{name: 'removeXMLNS'},
32+
{name: 'removeDimensions'},
33+
{name: 'addClassesToSVGElement', params: {classNames: ['svg', name]}},
34+
{name: 'addAttributesToSVGElement', params: {attributes: [{'width': '16'}, {'height': '16'}, {'aria-hidden': 'true'}]}},
35+
],
4136
});
4237
await writeFile(resolve(outputDir, `${name}.svg`), data);
4338
}

jest.config.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
export default {
2+
rootDir: 'web_src',
23
setupFilesAfterEnv: ['jest-extended'],
4+
testEnvironment: 'jsdom',
5+
testMatch: ['<rootDir>/**/*.test.js'],
36
testTimeout: 20000,
4-
rootDir: 'web_src',
5-
testMatch: [
6-
'<rootDir>/**/*.test.js',
7-
],
87
transform: {},
98
verbose: false,
109
};

0 commit comments

Comments
 (0)