Skip to content

Commit a25e92c

Browse files
committed
chore: update dependencies
1 parent ee48875 commit a25e92c

4 files changed

Lines changed: 19 additions & 19 deletions

File tree

builder/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@
99
"clean": "rm -rf dist && rm -rf .buildcache"
1010
},
1111
"dependencies": {
12-
"@types/node": "^24.10.15"
12+
"@types/node": "^24.12.0"
1313
},
1414
"devDependencies": {
1515
"@adguard/agtree": "^4.0.1",
1616
"@npmcli/package-json": "^7.0.5",
1717
"@types/npmcli__package-json": "^4.0.4",
1818
"@types/semver": "^7.7.1",
19-
"@typescript-eslint/eslint-plugin": "^8.56.1",
20-
"@typescript-eslint/parser": "^8.56.1",
21-
"@typescriptprime/parsing": "^1.1.0",
22-
"@typescriptprime/securereq": "^1.1.1",
19+
"@typescript-eslint/eslint-plugin": "^8.57.0",
20+
"@typescript-eslint/parser": "^8.57.0",
21+
"@typescriptprime/parsing": "^2.0.0",
22+
"@typescriptprime/securereq": "^1.2.0",
2323
"chokidar": "^5.0.0",
2424
"esbuild": "^0.27.3",
25-
"eslint": "^10.0.2",
25+
"eslint": "^10.0.3",
2626
"semver": "^7.7.4",
27-
"tldts": "^7.0.23",
27+
"tldts": "^7.0.25",
2828
"tsx": "^4.21.0",
2929
"typescript": "^5.9.3",
30-
"typescript-eslint": "^8.56.1",
30+
"typescript-eslint": "^8.57.0",
3131
"zod": "^4.3.6"
3232
}
3333
}

builder/source/buildci.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import * as Zod from 'zod'
22
import * as Process from 'node:process'
3-
import { PreProcessing, PostProcessing } from '@typescriptprime/parsing'
3+
import { ParseArgumentsAndOptions, FilterArgumentsForOptions } from '@typescriptprime/parsing'
44
import { Build, BuildOptions } from './build.js'
55

6-
let ParsedArgv = (await PostProcessing<BuildOptions>(PreProcessing(Process.argv))).Options
6+
let ParsedArgv = (await ParseArgumentsAndOptions<BuildOptions>(FilterArgumentsForOptions(Process.argv))).Options
77
let Options = await Zod.strictObject({
88
Minify: Zod.string().pipe(Zod.enum(['true', 'false'])).transform(Value => Value === 'true').default(true),
99
UseCache: Zod.string().pipe(Zod.enum(['true', 'false'])).transform(Value => Value === 'true').default(true),

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
"builder"
3333
],
3434
"devDependencies": {
35-
"@typescript-eslint/eslint-plugin": "^8.56.1",
36-
"@typescript-eslint/parser": "^8.56.1",
37-
"eslint": "^10.0.2",
38-
"typescript-eslint": "^8.56.1"
35+
"@typescript-eslint/eslint-plugin": "^8.57.0",
36+
"@typescript-eslint/parser": "^8.57.0",
37+
"eslint": "^10.0.3",
38+
"typescript-eslint": "^8.57.0"
3939
}
4040
}

userscript/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"lint": "tsc --noEmit && eslint **/*.ts"
77
},
88
"devDependencies": {
9-
"@types/web": "^0.0.338",
10-
"@typescript-eslint/eslint-plugin": "^8.56.1",
11-
"@typescript-eslint/parser": "^8.56.1",
12-
"eslint": "^10.0.2",
13-
"typescript-eslint": "^8.56.1"
9+
"@types/web": "^0.0.342",
10+
"@typescript-eslint/eslint-plugin": "^8.57.0",
11+
"@typescript-eslint/parser": "^8.57.0",
12+
"eslint": "^10.0.3",
13+
"typescript-eslint": "^8.57.0"
1414
}
1515
}

0 commit comments

Comments
 (0)