@cloudflare/vite-plugin 1.29.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +4097 -536
- package/dist/index.mjs.map +1 -1
- package/dist/{package-B8LLjfje.mjs → package--uDsBjBd.mjs} +11 -11
- package/dist/package--uDsBjBd.mjs.map +1 -0
- package/dist/workers/runner-worker/index.js +471 -0
- package/dist/workers/{runner-worker.js → runner-worker/module-runner-legacy.js} +33 -471
- package/dist/workers/runner-worker/module-runner.js +1220 -0
- package/package.json +23 -23
- package/dist/package-B8LLjfje.mjs.map +0 -1
- /package/dist/workers/{asset-worker.js → asset-worker/index.js} +0 -0
- /package/dist/workers/{router-worker.js → router-worker/index.js} +0 -0
- /package/dist/workers/{vite-proxy-worker.js → vite-proxy-worker/index.js} +0 -0
package/package.json
CHANGED
|
@@ -1,46 +1,49 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudflare/vite-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.30.0",
|
|
4
4
|
"description": "Cloudflare plugin for Vite",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
7
|
-
"workers",
|
|
8
7
|
"cloudflare-workers",
|
|
9
8
|
"vite",
|
|
10
|
-
"vite-plugin"
|
|
9
|
+
"vite-plugin",
|
|
10
|
+
"workers"
|
|
11
11
|
],
|
|
12
12
|
"homepage": "https://github.com/cloudflare/workers-sdk/tree/main/packages/vite-plugin-cloudflare#readme",
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/cloudflare/workers-sdk/issues"
|
|
15
15
|
},
|
|
16
|
+
"license": "MIT",
|
|
16
17
|
"repository": {
|
|
17
18
|
"type": "git",
|
|
18
19
|
"url": "https://github.com/cloudflare/workers-sdk.git",
|
|
19
20
|
"directory": "packages/vite-plugin-cloudflare"
|
|
20
21
|
},
|
|
21
|
-
"
|
|
22
|
-
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
23
25
|
"type": "module",
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"main": "./dist/index.mjs",
|
|
28
|
+
"types": "./dist/index.d.mts",
|
|
24
29
|
"exports": {
|
|
25
30
|
".": {
|
|
26
31
|
"types": "./dist/index.d.mts",
|
|
27
32
|
"import": "./dist/index.mjs"
|
|
28
33
|
}
|
|
29
34
|
},
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"dist"
|
|
34
|
-
],
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
35
38
|
"dependencies": {
|
|
36
39
|
"unenv": "2.0.0-rc.24",
|
|
37
40
|
"ws": "8.18.0",
|
|
38
|
-
"@cloudflare/unenv-preset": "2.
|
|
39
|
-
"miniflare": "4.
|
|
40
|
-
"wrangler": "4.
|
|
41
|
+
"@cloudflare/unenv-preset": "2.16.0",
|
|
42
|
+
"miniflare": "4.20260317.1",
|
|
43
|
+
"wrangler": "4.76.0"
|
|
41
44
|
},
|
|
42
45
|
"devDependencies": {
|
|
43
|
-
"@cloudflare/workers-types": "^4.
|
|
46
|
+
"@cloudflare/workers-types": "^4.20260317.1",
|
|
44
47
|
"@remix-run/node-fetch-server": "^0.8.0",
|
|
45
48
|
"@types/node": "^22.10.1",
|
|
46
49
|
"@types/semver": "^7.5.1",
|
|
@@ -55,27 +58,24 @@
|
|
|
55
58
|
"tree-kill": "^1.2.2",
|
|
56
59
|
"tsdown": "0.16.3",
|
|
57
60
|
"typescript": "~5.8.3",
|
|
58
|
-
"vite": "
|
|
61
|
+
"vite": "^8.0.0",
|
|
62
|
+
"vite-legacy": "npm:vite@7.1.12",
|
|
59
63
|
"vitest": "3.2.4",
|
|
60
|
-
"@cloudflare/containers-shared": "0.
|
|
61
|
-
"@cloudflare/mock-npm-registry": "0.0.0",
|
|
64
|
+
"@cloudflare/containers-shared": "0.13.0",
|
|
62
65
|
"@cloudflare/workers-shared": "0.19.1",
|
|
63
66
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
64
|
-
"@cloudflare/workers-utils": "0.
|
|
67
|
+
"@cloudflare/workers-utils": "0.13.0",
|
|
68
|
+
"@cloudflare/mock-npm-registry": "0.0.0"
|
|
65
69
|
},
|
|
66
70
|
"peerDependencies": {
|
|
67
71
|
"vite": "^6.1.0 || ^7.0.0 || ^8.0.0",
|
|
68
|
-
"wrangler": "^4.
|
|
69
|
-
},
|
|
70
|
-
"publishConfig": {
|
|
71
|
-
"access": "public"
|
|
72
|
+
"wrangler": "^4.76.0"
|
|
72
73
|
},
|
|
73
74
|
"workers-sdk": {
|
|
74
75
|
"prerelease": true
|
|
75
76
|
},
|
|
76
77
|
"scripts": {
|
|
77
78
|
"build": "tsdown",
|
|
78
|
-
"check:lint": "eslint . --max-warnings=0 --cache",
|
|
79
79
|
"check:type": "tsc --build",
|
|
80
80
|
"dev": "tsdown --watch",
|
|
81
81
|
"test": "vitest run",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"package-B8LLjfje.mjs","names":[],"sources":["../package.json"],"sourcesContent":["{\n\t\"name\": \"@cloudflare/vite-plugin\",\n\t\"version\": \"1.29.0\",\n\t\"description\": \"Cloudflare plugin for Vite\",\n\t\"keywords\": [\n\t\t\"cloudflare\",\n\t\t\"workers\",\n\t\t\"cloudflare-workers\",\n\t\t\"vite\",\n\t\t\"vite-plugin\"\n\t],\n\t\"homepage\": \"https://github.com/cloudflare/workers-sdk/tree/main/packages/vite-plugin-cloudflare#readme\",\n\t\"bugs\": {\n\t\t\"url\": \"https://github.com/cloudflare/workers-sdk/issues\"\n\t},\n\t\"repository\": {\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://github.com/cloudflare/workers-sdk.git\",\n\t\t\"directory\": \"packages/vite-plugin-cloudflare\"\n\t},\n\t\"license\": \"MIT\",\n\t\"sideEffects\": false,\n\t\"type\": \"module\",\n\t\"exports\": {\n\t\t\".\": {\n\t\t\t\"types\": \"./dist/index.d.mts\",\n\t\t\t\"import\": \"./dist/index.mjs\"\n\t\t}\n\t},\n\t\"main\": \"./dist/index.mjs\",\n\t\"types\": \"./dist/index.d.mts\",\n\t\"files\": [\n\t\t\"dist\"\n\t],\n\t\"scripts\": {\n\t\t\"build\": \"tsdown\",\n\t\t\"check:lint\": \"eslint . --max-warnings=0 --cache\",\n\t\t\"check:type\": \"tsc --build\",\n\t\t\"dev\": \"tsdown --watch\",\n\t\t\"test\": \"vitest run\",\n\t\t\"test:ci\": \"pnpm test\",\n\t\t\"test:e2e\": \"vitest run -c e2e/vitest.config.ts\",\n\t\t\"test:watch\": \"vitest\"\n\t},\n\t\"dependencies\": {\n\t\t\"@cloudflare/unenv-preset\": \"workspace:*\",\n\t\t\"miniflare\": \"workspace:*\",\n\t\t\"unenv\": \"2.0.0-rc.24\",\n\t\t\"wrangler\": \"workspace:*\",\n\t\t\"ws\": \"catalog:default\"\n\t},\n\t\"devDependencies\": {\n\t\t\"@cloudflare/containers-shared\": \"workspace:*\",\n\t\t\"@cloudflare/mock-npm-registry\": \"workspace:*\",\n\t\t\"@cloudflare/workers-shared\": \"workspace:*\",\n\t\t\"@cloudflare/workers-tsconfig\": \"workspace:*\",\n\t\t\"@cloudflare/workers-types\": \"catalog:default\",\n\t\t\"@cloudflare/workers-utils\": \"workspace:*\",\n\t\t\"@remix-run/node-fetch-server\": \"^0.8.0\",\n\t\t\"@types/node\": \"catalog:vite-plugin\",\n\t\t\"@types/semver\": \"^7.5.1\",\n\t\t\"@types/ws\": \"^8.5.13\",\n\t\t\"defu\": \"^6.1.4\",\n\t\t\"get-port\": \"^7.1.0\",\n\t\t\"magic-string\": \"^0.30.12\",\n\t\t\"mlly\": \"^1.7.4\",\n\t\t\"picocolors\": \"^1.1.1\",\n\t\t\"semver\": \"^7.7.1\",\n\t\t\"tinyglobby\": \"^0.2.12\",\n\t\t\"tree-kill\": \"catalog:default\",\n\t\t\"tsdown\": \"0.16.3\",\n\t\t\"typescript\": \"catalog:default\",\n\t\t\"vite\": \"catalog:vite-plugin\",\n\t\t\"vitest\": \"catalog:vitest-3\"\n\t},\n\t\"peerDependencies\": {\n\t\t\"vite\": \"^6.1.0 || ^7.0.0 || ^8.0.0\",\n\t\t\"wrangler\": \"workspace:^\"\n\t},\n\t\"publishConfig\": {\n\t\t\"access\": \"public\"\n\t},\n\t\"workers-sdk\": {\n\t\t\"prerelease\": true\n\t}\n}\n"],"mappings":";sBAAA;OACS;UACG;cACI;WACH;EACX;EACA;EACA;EACA;EACA;EACA;WACW;OACJ,EACP,OAAO,oDACP;aACa;EACb,QAAQ;EACR,OAAO;EACP,aAAa;EACb;UACU;cACI;OACP;UACG,EACV,KAAK;EACJ,SAAS;EACT,UAAU;EACV,EACD;OACO;QACC;QACA,CACR,OACA;UACU;EACV,SAAS;EACT,cAAc;EACd,cAAc;EACd,OAAO;EACP,QAAQ;EACR,WAAW;EACX,YAAY;EACZ,cAAc;EACd;eACe;EACf,4BAA4B;EAC5B,aAAa;EACb,SAAS;EACT,YAAY;EACZ,MAAM;EACN;kBACkB;EAClB,iCAAiC;EACjC,iCAAiC;EACjC,8BAA8B;EAC9B,gCAAgC;EAChC,6BAA6B;EAC7B,6BAA6B;EAC7B,gCAAgC;EAChC,eAAe;EACf,iBAAiB;EACjB,aAAa;EACb,QAAQ;EACR,YAAY;EACZ,gBAAgB;EAChB,QAAQ;EACR,cAAc;EACd,UAAU;EACV,cAAc;EACd,aAAa;EACb,UAAU;EACV,cAAc;EACd,QAAQ;EACR,UAAU;EACV;mBACmB;EACnB,QAAQ;EACR,YAAY;EACZ;gBACgB,EAChB,UAAU,UACV;CACD,eAAe,EACd,cAAc,MACd;CACD"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|