@astrojs/cloudflare 6.1.2 → 6.1.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.
- package/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +9 -0
- package/README.md +3 -3
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/src/index.ts +2 -1
- package/test/directory.test.js +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
1
|
+
[35m@astrojs/cloudflare:build: [0mcache hit, replaying output [2mc3e67fd9d731e257[0m
|
|
2
|
+
[35m@astrojs/cloudflare:build: [0m
|
|
3
|
+
[35m@astrojs/cloudflare:build: [0m> @astrojs/cloudflare@6.1.3 build /home/runner/work/astro/astro/packages/integrations/cloudflare
|
|
4
|
+
[35m@astrojs/cloudflare:build: [0m> astro-scripts build "src/**/*.ts" && tsc
|
|
5
|
+
[35m@astrojs/cloudflare:build: [0m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @astrojs/cloudflare
|
|
2
2
|
|
|
3
|
+
## 6.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#6208](https://github.com/withastro/astro/pull/6208) [`79f49acbe`](https://github.com/withastro/astro/commit/79f49acbe13673bfc27e794bcfae518f38c4a4fe) Thanks [@mfrachet](https://github.com/mfrachet)! - Fix path file that was generated outside the functions folder
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`79783fc01`](https://github.com/withastro/astro/commit/79783fc0181153a8e379d3f023422510a7467ead), [`baa2dbb3b`](https://github.com/withastro/astro/commit/baa2dbb3b5678b2bd56fb80df99d386f32e274b7), [`8b7cb64da`](https://github.com/withastro/astro/commit/8b7cb64dadfca93c65d62df54754633d398cb2ed)]:
|
|
10
|
+
- astro@2.0.11
|
|
11
|
+
|
|
3
12
|
## 6.1.2
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -47,9 +47,9 @@ default `"advanced"`
|
|
|
47
47
|
|
|
48
48
|
Cloudflare Pages has 2 different modes for deploying functions, `advanced` mode which picks up the `_worker.js` in `dist`, or a directory mode where pages will compile the worker out of a functions folder in the project root.
|
|
49
49
|
|
|
50
|
-
For most projects the
|
|
50
|
+
For most projects the adapter default of `advanced` will be sufficient; the `dist` folder will contain your compiled project. Switching to directory mode allows you to use [pages plugins](https://developers.cloudflare.com/pages/platform/functions/plugins/) such as [Sentry](https://developers.cloudflare.com/pages/platform/functions/plugins/sentry/) or write custom code to enable logging.
|
|
51
51
|
|
|
52
|
-
In directory mode the
|
|
52
|
+
In directory mode the adapter will compile the client side part of your app the same way, but moves the worker script into a `functions` folder in the project root. The adapter will only ever place a `[[path]].js` in that folder, allowing you to add additional plugins and pages middleware which can be checked into version control. Cloudflare documentation contains more information about [writing custom functions](https://developers.cloudflare.com/pages/platform/functions/).
|
|
53
53
|
|
|
54
54
|
```ts
|
|
55
55
|
// directory mode
|
|
@@ -67,7 +67,7 @@ In order for preview to work you must install `wrangler`
|
|
|
67
67
|
$ pnpm install wrangler --save-dev
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
It's then possible to update the preview script in your `package.json` to `"preview": "wrangler pages dev ./dist"`. This will allow you run your entire application locally with [Wrangler](https://github.com/cloudflare/wrangler2), which supports secrets, environment variables, KV namespaces, Durable Objects and [all other supported Cloudflare bindings](https://developers.cloudflare.com/pages/platform/functions/#adding-bindings).
|
|
70
|
+
It's then possible to update the preview script in your `package.json` to `"preview": "wrangler pages dev ./dist"`. This will allow you to run your entire application locally with [Wrangler](https://github.com/cloudflare/wrangler2), which supports secrets, environment variables, KV namespaces, Durable Objects and [all other supported Cloudflare bindings](https://developers.cloudflare.com/pages/platform/functions/#adding-bindings).
|
|
71
71
|
|
|
72
72
|
## Access to the Cloudflare runtime
|
|
73
73
|
|
package/dist/index.js
CHANGED
|
@@ -138,7 +138,7 @@ function createIntegration(args) {
|
|
|
138
138
|
);
|
|
139
139
|
}
|
|
140
140
|
if (isModeDirectory) {
|
|
141
|
-
const functionsUrl = new URL("functions", _config.root);
|
|
141
|
+
const functionsUrl = new URL("functions/", _config.root);
|
|
142
142
|
await fs.promises.mkdir(functionsUrl, { recursive: true });
|
|
143
143
|
const directoryUrl = new URL("[[path]].js", functionsUrl);
|
|
144
144
|
await fs.promises.rename(finalBuildUrl, directoryUrl);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/cloudflare",
|
|
3
3
|
"description": "Deploy your site to cloudflare workers or cloudflare pages",
|
|
4
|
-
"version": "6.1.
|
|
4
|
+
"version": "6.1.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"author": "withastro",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"tiny-glob": "^0.2.9"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"astro": "^2.0.
|
|
35
|
+
"astro": "^2.0.11"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"astro": "2.0.
|
|
38
|
+
"astro": "2.0.11",
|
|
39
39
|
"astro-scripts": "0.0.10",
|
|
40
40
|
"chai": "^4.3.6",
|
|
41
41
|
"cheerio": "^1.0.0-rc.11",
|
package/src/index.ts
CHANGED
|
@@ -203,8 +203,9 @@ export default function createIntegration(args?: Options): AstroIntegration {
|
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
if (isModeDirectory) {
|
|
206
|
-
const functionsUrl = new URL('functions', _config.root);
|
|
206
|
+
const functionsUrl = new URL('functions/', _config.root);
|
|
207
207
|
await fs.promises.mkdir(functionsUrl, { recursive: true });
|
|
208
|
+
|
|
208
209
|
const directoryUrl = new URL('[[path]].js', functionsUrl);
|
|
209
210
|
await fs.promises.rename(finalBuildUrl, directoryUrl);
|
|
210
211
|
}
|
package/test/directory.test.js
CHANGED
|
@@ -17,5 +17,6 @@ describe('mode: "directory"', () => {
|
|
|
17
17
|
|
|
18
18
|
it('generates functions folder inside the project root', async () => {
|
|
19
19
|
expect(await fixture.pathExists('../functions')).to.be.true;
|
|
20
|
+
expect(await fixture.pathExists('../functions/[[path]].js')).to.be.true;
|
|
20
21
|
});
|
|
21
22
|
});
|