Skip to content

Commit 0d1284d

Browse files
chore(deps): update dependency @types/node to v20.19.22 (#1026)
* chore(deps): update dependency @types/node to v20.19.22 * chore(fix): fix argument type error --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent bca93a5 commit 0d1284d

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

apps/generator-cli/src/app/services/version-manager.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ export class VersionManagerService {
181181
);
182182
const file = fs.createWriteStream(temporaryFilePath);
183183
res.data.pipe(file);
184-
file.on('finish', (content) => {
184+
file.on('finish', () => {
185185
fs.moveSync(temporaryFilePath, filePath, { overwrite: true });
186-
resolve(content);
186+
resolve(true);
187187
});
188188
})
189189
)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"@types/inquirer": "8.2.12",
118118
"@types/jest": "30.0.0",
119119
"@types/jsonpath": "0.2.4",
120-
"@types/node": "20.14.8",
120+
"@types/node": "20.19.22",
121121
"@typescript-eslint/eslint-plugin": "7.18.0",
122122
"@typescript-eslint/parser": "7.18.0",
123123
"dotenv": "17.2.3",

yarn.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3124,12 +3124,12 @@
31243124
dependencies:
31253125
undici-types "~7.14.0"
31263126

3127-
"@types/node@20.14.8":
3128-
version "20.14.8"
3129-
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.8.tgz#45c26a2a5de26c3534a9504530ddb3b27ce031ac"
3130-
integrity sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==
3127+
"@types/node@20.19.22":
3128+
version "20.19.22"
3129+
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.22.tgz#f17e80ee1d1fdd10d50bef449abe23bfc0216780"
3130+
integrity sha512-hRnu+5qggKDSyWHlnmThnUqg62l29Aj/6vcYgUaSFL9oc7DVjeWEQN3PRgdSc6F8d9QRMWkf36CLMch1Do/+RQ==
31313131
dependencies:
3132-
undici-types "~5.26.4"
3132+
undici-types "~6.21.0"
31333133

31343134
"@types/normalize-package-data@^2.4.3":
31353135
version "2.4.4"
@@ -11705,10 +11705,10 @@ [email protected]:
1170511705
resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.12.1.tgz#7bb8cc9b3d397e201cf8553336d262544ead829e"
1170611706
integrity sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==
1170711707

11708-
undici-types@~5.26.4:
11709-
version "5.26.5"
11710-
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
11711-
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
11708+
undici-types@~6.21.0:
11709+
version "6.21.0"
11710+
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb"
11711+
integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==
1171211712

1171311713
undici-types@~7.14.0:
1171411714
version "7.14.0"

0 commit comments

Comments
 (0)