@astrojs/cloudflare 0.2.2 → 0.2.3

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
- @astrojs/cloudflare:build: cache hit, replaying output 87cb3a1b6dd9c844
2
- @astrojs/cloudflare:build: 
3
- @astrojs/cloudflare:build: > @astrojs/cloudflare@0.2.2 build /home/runner/work/astro/astro/packages/integrations/cloudflare
4
- @astrojs/cloudflare:build: > astro-scripts build "src/**/*.ts" && tsc
5
- @astrojs/cloudflare:build: 
1
+ @astrojs/cloudflare:build: cache hit, replaying output f28e120d799f877a
2
+ @astrojs/cloudflare:build: 
3
+ @astrojs/cloudflare:build: > @astrojs/cloudflare@0.2.3 build /home/runner/work/astro/astro/packages/integrations/cloudflare
4
+ @astrojs/cloudflare:build: > astro-scripts build "src/**/*.ts" && tsc
5
+ @astrojs/cloudflare:build: 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @astrojs/cloudflare
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3854](https://github.com/withastro/astro/pull/3854) [`b012ee55`](https://github.com/withastro/astro/commit/b012ee55b107dea0730286263b27d83e530fad5d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - [astro add] Support adapters and third party packages
8
+
3
9
  ## 0.2.2
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -25,8 +25,8 @@ It's then possible to update the preview script in your `package.json` to `"prev
25
25
 
26
26
  ## Streams
27
27
 
28
- Some integrations such as (react)[https://github.com/withastro/astro/tree/main/packages/integrations/react] rely on web streams. Currently Cloudflare Pages functions are in beta and don't support the `streams_enable_constructors` feature flag.
28
+ Some integrations such as [React](https://github.com/withastro/astro/tree/main/packages/integrations/react) rely on web streams. Currently Cloudflare Pages functions are in beta and don't support the `streams_enable_constructors` feature flag.
29
29
 
30
30
  In order to work around this:
31
31
  - install the `"web-streams-polyfill"` package
32
- - add `import "web-streams-polyfill/es2018";` to the top of the front matter of every page which requires streams, such as server rendering a React component.
32
+ - add `import "web-streams-polyfill/es2018";` to the top of the front matter of every page which requires streams, such as server rendering a React component.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@astrojs/cloudflare",
3
3
  "description": "Deploy your site to cloudflare pages functions",
4
- "version": "0.2.2",
4
+ "version": "0.2.3",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "author": "withastro",
@@ -11,6 +11,9 @@
11
11
  "url": "https://github.com/withastro/astro.git",
12
12
  "directory": "packages/integrations/cloudflare"
13
13
  },
14
+ "keywords": [
15
+ "astro-adapter"
16
+ ],
14
17
  "bugs": "https://github.com/withastro/astro/issues",
15
18
  "homepage": "https://astro.build",
16
19
  "exports": {
@@ -22,7 +25,7 @@
22
25
  "esbuild": "^0.14.42"
23
26
  },
24
27
  "devDependencies": {
25
- "astro": "1.0.0-beta.61",
28
+ "astro": "1.0.0-beta.65",
26
29
  "astro-scripts": "0.0.6"
27
30
  },
28
31
  "scripts": {