Skip to content

Commit f4cdf18

Browse files
authored
chore: update wrangler to 4.56.0 (#868)
1 parent 3faa555 commit f4cdf18

File tree

78 files changed

+1041
-15359
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1041
-15359
lines changed

astro-blog-starter-template/package-lock.json

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

astro-blog-starter-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"typescript": "5.9.3"
2121
},
2222
"devDependencies": {
23-
"wrangler": "4.55.0"
23+
"wrangler": "4.56.0"
2424
},
2525
"private": true,
2626
"scripts": {

astro-blog-starter-template/worker-configuration.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable */
22
// Generated by Wrangler by running `wrangler types` (hash: 9d50a76cdc759facba0bb43994cbf977)
3-
// Runtime types generated with workerd@1.20251213.0 2025-10-08 nodejs_compat
3+
// Runtime types generated with workerd@1.20251217.0 2025-10-08 nodejs_compat
44
declare namespace Cloudflare {
55
interface GlobalProps {
66
mainModule: typeof import("./dist/_worker.js/index");

chanfana-openapi-template/package-lock.json

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chanfana-openapi-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@types/node": "24.10.1",
2626
"typescript": "5.9.3",
2727
"vitest": "3.2.4",
28-
"wrangler": "4.55.0"
28+
"wrangler": "4.56.0"
2929
},
3030
"private": true,
3131
"scripts": {

chanfana-openapi-template/worker-configuration.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable */
22
// Generated by Wrangler by running `wrangler types` (hash: 973863b87c5f17b377119a1dc8be79cf)
3-
// Runtime types generated with workerd@1.20251213.0 2025-10-08
3+
// Runtime types generated with workerd@1.20251217.0 2025-10-08
44
declare namespace Cloudflare {
55
interface GlobalProps {
66
mainModule: typeof import("./src/index");

cli/src/npm.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ export async function generateNpmLockfiles({
4646
})`npm install --no-audit --progress=false --package-lock-only`;
4747

4848
if (hasNodeModules) {
49+
// npm may create a new node_modules directory, remove it before restoring the original
50+
await fs.rm("./node_modules", { recursive: true, force: true });
4951
await fs.move("./._node_modules", "./node_modules");
5052
}
5153
}

0 commit comments

Comments
 (0)