diff options
-rw-r--r-- | packages/integrations/cloudflare/package.json | 2 | ||||
-rw-r--r-- | packages/integrations/cloudflare/test/routes-json.test.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index 1d376ec34..ba157c69e 100644 --- a/packages/integrations/cloudflare/package.json +++ b/packages/integrations/cloudflare/package.json @@ -40,7 +40,7 @@ "wrangler": "^3.84.0" }, "peerDependencies": { - "astro": "^5.0.0-alpha.8" + "astro": "^5.0.0" }, "devDependencies": { "@astrojs/test-utils": "workspace:*", diff --git a/packages/integrations/cloudflare/test/routes-json.test.js b/packages/integrations/cloudflare/test/routes-json.test.js index ee788721d..22bb5e3eb 100644 --- a/packages/integrations/cloudflare/test/routes-json.test.js +++ b/packages/integrations/cloudflare/test/routes-json.test.js @@ -228,13 +228,13 @@ describe('_routes.json generation', () => { await fixture.build(); }); - it('creates `include` for on-demand and `exclude` that are supposed to match nothin', async () => { + it('creates `include` for on-demand and `exclude` that are supposed to match nothing', async () => { const _routesJson = await fixture.readFile('/_routes.json'); const routes = JSON.parse(_routesJson); assert.deepEqual(routes, { version: 1, - include: ['/_image', '/dynamic'], + include: ['/dynamic', '/_image'], exclude: [], }); }); |