@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @pluv/platform-cloudflare@0.30.0 build /home/runner/work/pluv/pluv/packages/platform-cloudflare
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
  CLI Building entry: src/index.ts
@@ -8,11 +8,11 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- CJS dist/index.js 12.73 KB
12
- CJS ⚡️ Build success in 86ms
13
11
  ESM dist/index.mjs 11.63 KB
14
- ESM ⚡️ Build success in 92ms
12
+ ESM ⚡️ Build success in 77ms
13
+ CJS dist/index.js 12.73 KB
14
+ CJS ⚡️ Build success in 78ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 1015ms
17
- DTS dist/index.d.mts 4.15 KB
18
- DTS dist/index.d.ts 4.15 KB
16
+ DTS ⚡️ Build success in 895ms
17
+ DTS dist/index.d.mts 4.17 KB
18
+ DTS dist/index.d.ts 4.17 KB
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.0",
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.1.0",
21
- "@pluv/io": "^0.30.0",
22
- "@pluv/persistence-cloudflare-transactional-storage": "^0.30.0",
23
- "@pluv/types": "^0.30.0"
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.20240919.0",
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.0",
31
- "eslint-config-pluv": "^0.30.0"
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
@@ -1,4 +1,4 @@
1
- export type { CloudflarePlatformConfig } from "./CloudflarePlatform";
1
+ export type { CloudflarePlatform, CloudflarePlatformConfig } from "./CloudflarePlatform";
2
2
  export { createPluvHandler } from "./createPluvHandler";
3
3
  export type {
4
4
  AuthorizeFunction,