@pluv/platform-cloudflare 0.30.0 → 0.30.2
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/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +18 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +8 -8
- package/src/index.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @pluv/platform-cloudflare@0.30.
|
|
2
|
+
> @pluv/platform-cloudflare@0.30.2 build /home/runner/work/pluv/pluv/packages/platform-cloudflare
|
|
3
3
|
> tsup src/index.ts --format esm,cjs --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
[34mCLI[39m Target: es6
|
|
9
9
|
[34mESM[39m Build start
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[32m12.73 KB[39m
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in 86ms
|
|
13
11
|
[32mESM[39m [1mdist/index.mjs [22m[32m11.63 KB[39m
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 77ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m12.73 KB[39m
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 78ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m4.
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m4.
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 895ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m4.17 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m4.17 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @pluv/platform-cloudflare
|
|
2
2
|
|
|
3
|
+
## 0.30.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6521b05: Export the types of `NodePlatform` and `CloudflarePlatform`.
|
|
8
|
+
- @pluv/io@0.30.2
|
|
9
|
+
- @pluv/persistence-cloudflare-transactional-storage@0.30.2
|
|
10
|
+
- @pluv/types@0.30.2
|
|
11
|
+
|
|
12
|
+
## 0.30.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [b9c3633]
|
|
17
|
+
- @pluv/io@0.30.1
|
|
18
|
+
- @pluv/persistence-cloudflare-transactional-storage@0.30.1
|
|
19
|
+
- @pluv/types@0.30.1
|
|
20
|
+
|
|
3
21
|
## 0.30.0
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -74,4 +74,4 @@ declare const createPluvHandler: <TPluvServer extends PluvServer<CloudflarePlatf
|
|
|
74
74
|
|
|
75
75
|
declare const platformCloudflare: <TEnv extends Record<string, any> = {}>(config?: CloudflarePlatformConfig<TEnv>) => CloudflarePlatform<TEnv>;
|
|
76
76
|
|
|
77
|
-
export { type AuthorizeFunction, type AuthorizeFunctionContext, type CloudflarePlatformConfig, type CreatePluvHandlerConfig, type CreatePluvHandlerResult, type PluvHandlerFetch, createPluvHandler, platformCloudflare };
|
|
77
|
+
export { type AuthorizeFunction, type AuthorizeFunctionContext, CloudflarePlatform, type CloudflarePlatformConfig, type CreatePluvHandlerConfig, type CreatePluvHandlerResult, type PluvHandlerFetch, createPluvHandler, platformCloudflare };
|
package/dist/index.d.ts
CHANGED
|
@@ -74,4 +74,4 @@ declare const createPluvHandler: <TPluvServer extends PluvServer<CloudflarePlatf
|
|
|
74
74
|
|
|
75
75
|
declare const platformCloudflare: <TEnv extends Record<string, any> = {}>(config?: CloudflarePlatformConfig<TEnv>) => CloudflarePlatform<TEnv>;
|
|
76
76
|
|
|
77
|
-
export { type AuthorizeFunction, type AuthorizeFunctionContext, type CloudflarePlatformConfig, type CreatePluvHandlerConfig, type CreatePluvHandlerResult, type PluvHandlerFetch, createPluvHandler, platformCloudflare };
|
|
77
|
+
export { type AuthorizeFunction, type AuthorizeFunctionContext, CloudflarePlatform, type CloudflarePlatformConfig, type CreatePluvHandlerConfig, type CreatePluvHandlerResult, type PluvHandlerFetch, createPluvHandler, platformCloudflare };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-cloudflare",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.2",
|
|
4
4
|
"description": "@pluv/io adapter for cloudflare workers",
|
|
5
5
|
"author": "leedavidcs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,18 +17,18 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"path-to-regexp": "^8.
|
|
21
|
-
"@pluv/io": "^0.30.
|
|
22
|
-
"@pluv/persistence-cloudflare-transactional-storage": "^0.30.
|
|
23
|
-
"@pluv/types": "^0.30.
|
|
20
|
+
"path-to-regexp": "^8.2.0",
|
|
21
|
+
"@pluv/io": "^0.30.2",
|
|
22
|
+
"@pluv/persistence-cloudflare-transactional-storage": "^0.30.2",
|
|
23
|
+
"@pluv/types": "^0.30.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@cloudflare/workers-types": "^4.
|
|
26
|
+
"@cloudflare/workers-types": "^4.20240925.0",
|
|
27
27
|
"eslint": "^8.57.0",
|
|
28
28
|
"tsup": "^8.3.0",
|
|
29
29
|
"typescript": "^5.6.2",
|
|
30
|
-
"@pluv/tsconfig": "^0.30.
|
|
31
|
-
"eslint-config-pluv": "^0.30.
|
|
30
|
+
"@pluv/tsconfig": "^0.30.2",
|
|
31
|
+
"eslint-config-pluv": "^0.30.2"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
package/src/index.ts
CHANGED