Skip to content

Commit 32a5347

Browse files
committed
fix: downgrade numerous + update @types/node
1 parent 72f96bf commit 32a5347

File tree

13 files changed

+28
-41
lines changed

13 files changed

+28
-41
lines changed

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"groupName": "devDependencies",
1010
"semanticCommitType": "chore",
1111
"automerge": true,
12-
"ignoreDeps": ["eslint"]
12+
"ignoreDeps": ["eslint", "numerous"]
1313
},
1414
{
1515
"matchDepTypes": ["dependencies"],

dist/legacy/setup-cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/modern/setup-cpp.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"build.vite": "cross-env NODE_ENV=production vite build",
3131
"build.vite.legacy": "cross-env NODE_ENV=production TARGET=legacy vite build",
3232
"build.json": "shx cp ./src/*/*.json ./dist/legacy/ && shx cp ./dist/legacy/*.json ./dist/modern && minijson --file ./dist/**/*.json",
33-
"bump": "ncu -u -x numerous,execa,prettier,@types/node,eslint,@types/eslint && pnpm update && pnpx typesync && pnpm run clean",
33+
"bump": "ncu -u -x numerous,eslint,@types/eslint && pnpm update && pnpx typesync && pnpm run clean",
3434
"clean": "shx rm -rf ./dist ./packages/*/dist ./exe ./.parcel-cache && shx mkdir -p ./dist/legacy ./dist/modern ./dist/modern ",
3535
"dev.vite": "cross-env NODE_ENV=development vite build --watch",
3636
"dev.packages": "turbo dev",
@@ -113,7 +113,7 @@
113113
"node-downloader-helper": "2.1.9",
114114
"npm-check-updates": "^17.1.2",
115115
"npm-run-all2": "^6.2.3",
116-
"numerous": "2.0.0",
116+
"numerous": "1.0.3",
117117
"p-timeout": "^6.1.2",
118118
"path-exists": "^5.0.0",
119119
"patha": "^0.4.1",
@@ -131,7 +131,7 @@
131131
"simple-update-notifier": "^2.0.0",
132132
"terser": "^5.33.0",
133133
"terser-config-atomic": "^1.0.0",
134-
"time-delta": "github:aminya/time-delta#d732dbc4fe991ab323cfa9075df8a7988537926e",
134+
"time-delta": "github:aminya/time-delta#69d91a4",
135135
"timers-browserify": "^2.0.12",
136136
"ts-node": "^10.9.2",
137137
"ts-readme": "^1.1.3",

packages/envosman/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"dependencies": {
2020
"@actions/core": "^1.10.1",
21-
"@types/node": "^12",
21+
"@types/node": "22.5.5",
2222
"admina": "^1.0.1",
2323
"ci-info": "^4.0.0",
2424
"escape-path-with-spaces": "^1.0.2",

packages/setup-apt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"prepublishOnly": "pnpm run build"
1818
},
1919
"dependencies": {
20-
"@types/node": "^12",
20+
"@types/node": "22.5.5",
2121
"admina": "^1.0.1",
2222
"ci-info": "^4.0.0",
2323
"path-exists": "^5.0.0",

packages/setup-apt/src/install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export async function installAptPack(packages: AptPackage[], update = false): Pr
104104
})
105105
} catch (err) {
106106
if (isExecaError(err)) {
107-
if (retryErrors.some((error) => err.stderr.includes(error))) {
107+
if (retryErrors.some((error) => typeof err.stderr === "string" && err.stderr.includes(error))) {
108108
warning(`Failed to install packages ${needToInstall}. Retrying...`)
109109
execRootSync(
110110
apt,

packages/setup-brew/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"test": "jest --coverage"
1919
},
2020
"dependencies": {
21-
"@types/node": "^12",
21+
"@types/node": "22.5.5",
2222
"ci-log": "workspace:*",
2323
"envosman": "workspace:*",
2424
"which": "4.0.0",

0 commit comments

Comments
 (0)