Skip to content

Commit 9e16511

Browse files
authored
perf: optimize rslib startup build (#803)
1 parent a6bb865 commit 9e16511

6 files changed

Lines changed: 576 additions & 481 deletions

File tree

.oxlintrc.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@
1111
"rules": {
1212
"eslint/no-unused-vars": [
1313
"error",
14-
{ "fix": { "imports": "safe-fix", "variables": "suggestion" } }
14+
{
15+
"argsIgnorePattern": "^_",
16+
"caughtErrorsIgnorePattern": "^_",
17+
"destructuredArrayIgnorePattern": "^_",
18+
"fix": { "imports": "safe-fix", "variables": "suggestion" },
19+
"varsIgnorePattern": "^_"
20+
}
1521
],
1622
"eslint/prefer-const": "error",
1723
"eslint/no-useless-escape": "error",

package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -211,16 +211,17 @@
211211
"yaml": "^2.9.0"
212212
},
213213
"devDependencies": {
214-
"@microsoft/api-extractor": "^7.58.7",
215-
"@rslib/core": "0.20.1",
216-
"@types/node": "^22.0.0",
217-
"@vitest/coverage-v8": "4.1.2",
218-
"fallow": "^2.91.0",
214+
"@microsoft/api-extractor": "^7.58.8",
215+
"@rslib/core": "0.22.1",
216+
"@types/node": "^22.19.21",
217+
"@typescript/native-preview": "7.0.0-dev.20260613.1",
218+
"@vitest/coverage-v8": "4.1.8",
219+
"fallow": "^2.95.0",
219220
"oxfmt": "^0.42.0",
220-
"oxlint": "^1.57.0",
221-
"skillgym": "^0.8.0",
222-
"typescript": "^6.0.2",
223-
"vite": "^8.0.10",
224-
"vitest": "^4.1.2"
221+
"oxlint": "^1.69.0",
222+
"skillgym": "^0.9.1",
223+
"typescript": "^6.0.3",
224+
"vite": "^8.0.16",
225+
"vitest": "^4.1.8"
225226
}
226227
}

0 commit comments

Comments
 (0)