Skip to content

Commit 8f683b5

Browse files
committed
Update dependencies
1 parent 0a642bb commit 8f683b5

File tree

3 files changed

+529
-683
lines changed

3 files changed

+529
-683
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,9 @@ updates:
2323
update-types: ["version-update:semver-major"] # Keep Node 20 compatibility
2424
- dependency-name: "chai"
2525
update-types: ["version-update:semver-major"] # chai 4 to avoid esm
26+
- dependency-name: "yargs"
27+
update-types: ["version-update:semver-major"] # yargs 17 for esbuild CJS bundling
28+
- dependency-name: "node-pty"
29+
update-types: ["version-update:semver-minor"] # node-pty 1.1 has broken spawn-helper permissions (microsoft/node-pty#866)
2630
schedule:
2731
interval: "weekly"

package.json

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -56,50 +56,49 @@
5656
"devDependencies": {
5757
"@stylistic/eslint-plugin": "^5.10.0",
5858
"@types/chai": "^4.3.20",
59-
"@types/chalk": "^2.2.4",
6059
"@types/follow-redirects": "^1.14.4",
6160
"@types/js-yaml": "^4.0.9",
6261
"@types/mocha": "^10.0.10",
6362
"@types/ncp": "^2.0.8",
6463
"@types/node": "^20.19.37",
6564
"@types/pull-stream": "^3.6.7",
6665
"@types/recursive-readdir": "^2.2.4",
67-
"@types/semver": "^7.5.8",
66+
"@types/semver": "^7.7.1",
6867
"@types/shell-quote": "^1.7.5",
6968
"@types/text-table": "^0.2.5",
70-
"@types/yargs": "^17.0.33",
71-
"@typescript-eslint/eslint-plugin": "^8.26.0",
72-
"@typescript-eslint/parser": "^8.26.0",
69+
"@types/yargs": "^17.0.35",
70+
"@typescript-eslint/eslint-plugin": "^8.56.1",
71+
"@typescript-eslint/parser": "^8.56.1",
7372
"chai": "^4.5.0",
7473
"copyfiles": "^2.4.1",
75-
"esbuild": "^0.27.0",
76-
"eslint": "^9.39.3",
74+
"esbuild": "^0.27.3",
75+
"eslint": "^10.0.2",
7776
"event-stream": "^4.0.1",
78-
"minimatch": "^10.0.1",
79-
"mocha": "^11.1.0",
77+
"minimatch": "^10.2.4",
78+
"mocha": "^11.7.5",
8079
"npm-run-all": "^4.1.5",
81-
"p-all": "^5.0.0",
80+
"p-all": "^5.0.1",
8281
"rimraf": "^6.1.3",
8382
"ts-node": "^10.9.2",
84-
"typescript": "^5.8.2",
83+
"typescript": "^5.9.3",
8584
"typescript-formatter": "^7.2.2",
86-
"vinyl": "^3.0.0",
87-
"vinyl-fs": "^4.0.0"
85+
"vinyl": "^3.0.1",
86+
"vinyl-fs": "^4.0.2"
8887
},
8988
"dependencies": {
90-
"chalk": "^5.4.1",
91-
"follow-redirects": "^1.15.9",
92-
"js-yaml": "^4.1.0",
89+
"chalk": "^5.6.2",
90+
"follow-redirects": "^1.15.11",
91+
"js-yaml": "^4.1.1",
9392
"jsonc-parser": "^3.3.1",
9493
"ncp": "^2.0.0",
95-
"node-pty": "^1.0.0",
94+
"node-pty": "~1.0.0",
9695
"proxy-agent": "^6.5.0",
9796
"pull-stream": "^3.7.0",
9897
"recursive-readdir": "^2.2.3",
99-
"semver": "^7.7.1",
100-
"shell-quote": "^1.8.2",
98+
"semver": "^7.7.4",
99+
"shell-quote": "^1.8.3",
101100
"stream-to-pull-stream": "^1.7.3",
102-
"tar": "^7.5.4",
101+
"tar": "^7.5.10",
103102
"text-table": "^0.2.0",
104103
"vscode-uri": "^3.1.0",
105104
"yargs": "~17.7.2"

0 commit comments

Comments
 (0)