diff options
author | 2024-11-28 11:44:09 +0000 | |
---|---|---|
committer | 2024-11-28 11:44:09 +0000 | |
commit | 5a71b606cf64910ebbdea9a7352ffdba0d809a4c (patch) | |
tree | 909b358bcf8c96ba1137801aff9943907846642c | |
parent | 3ea6271ba0ce75925ef932bac24a8e7049b8694e (diff) | |
download | astro-5a71b606cf64910ebbdea9a7352ffdba0d809a4c.tar.gz astro-5a71b606cf64910ebbdea9a7352ffdba0d809a4c.tar.zst astro-5a71b606cf64910ebbdea9a7352ffdba0d809a4c.zip |
chore: update Astro peer dep for adapters (#449)
-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: [], }); }); |