@pluv/platform-cloudflare 0.1.11 → 0.1.13
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 +5 -5
- package/CHANGELOG.md +17 -0
- package/README.md +2 -1
- package/package.json +6 -6
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @pluv/platform-cloudflare@0.1.
|
|
2
|
+
> @pluv/platform-cloudflare@0.1.13 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,10 +8,10 @@
|
|
|
8
8
|
[34mCLI[39m Target: es6
|
|
9
9
|
[34mESM[39m Build start
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m1.50 KB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in 71ms
|
|
13
11
|
[32mCJS[39m [1mdist/index.js [22m[32m2.52 KB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 83ms
|
|
13
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m1.50 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 90ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 3783ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.03 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @pluv/platform-cloudflare
|
|
2
2
|
|
|
3
|
+
## 0.1.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78fd644: updated readmes with links to the documentation website
|
|
8
|
+
- Updated dependencies [78fd644]
|
|
9
|
+
- @pluv/io@0.3.5
|
|
10
|
+
|
|
11
|
+
## 0.1.12
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 850626e: bumped dependencies
|
|
16
|
+
- Updated dependencies [850626e]
|
|
17
|
+
- @pluv/types@0.1.6
|
|
18
|
+
- @pluv/io@0.3.4
|
|
19
|
+
|
|
3
20
|
## 0.1.11
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
<a href="https://commitizen.github.io/cz-cli/">
|
|
24
24
|
<img src="https://img.shields.io/badge/commitizen-friendly-brightgreen.svg" alt="Commitizen friendly" />
|
|
25
25
|
</a>
|
|
26
|
-
<img src="https://img.shields.io/badge/docs-coming%20soon!-blue" alt="Docs coming soon!" />
|
|
27
26
|
</p>
|
|
28
27
|
|
|
29
28
|
<p align="center">
|
|
@@ -34,6 +33,8 @@
|
|
|
34
33
|
|
|
35
34
|
> Enables [@pluv/io](https://www.npmjs.com/package/@pluv/io) to run on [Cloudflare Workers](https://workers.cloudflare.com/).
|
|
36
35
|
|
|
36
|
+
**👉 See full documentation on [pluv.io](https://pluv.io/docs/introduction). 👈**
|
|
37
|
+
|
|
37
38
|
## Installation
|
|
38
39
|
|
|
39
40
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-cloudflare",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "@pluv/io adapter for cloudflare workers",
|
|
5
5
|
"author": "leedavidcs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@pluv/io": "^0.3.
|
|
21
|
-
"@pluv/types": "^0.1.
|
|
20
|
+
"@pluv/io": "^0.3.5",
|
|
21
|
+
"@pluv/types": "^0.1.6"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@cloudflare/workers-types": "^4.
|
|
24
|
+
"@cloudflare/workers-types": "^4.20230404.0",
|
|
25
25
|
"tsup": "^6.7.0",
|
|
26
|
-
"typescript": "^5.0.
|
|
26
|
+
"typescript": "^5.0.4",
|
|
27
27
|
"@pluv/tsconfig": "^0.1.5",
|
|
28
|
-
"eslint-config-pluv": "^0.1.
|
|
28
|
+
"eslint-config-pluv": "^0.1.10"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|