Skip to content

Commit

Permalink
chore: update Astro peer dep for adapters (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored Nov 28, 2024
1 parent 911d197 commit 0ba7a39
Show file tree
Hide file tree
Showing 6 changed files with 92 additions and 17 deletions.
2 changes: 1 addition & 1 deletion packages/cloudflare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"wrangler": "^3.84.0"
},
"peerDependencies": {
"astro": "^5.0.0-alpha.8"
"astro": "^5.0.0"
},
"devDependencies": {
"@astrojs/test-utils": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/cloudflare/test/routes-json.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: [],
});
});
Expand Down
4 changes: 2 additions & 2 deletions packages/netlify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
"@netlify/functions": "^2.8.0",
"@vercel/nft": "^0.27.5",
"esbuild": "^0.24.0",
"vite": "6.0.0-beta.2"
"vite": "6.0.0"
},
"peerDependencies": {
"astro": "^5.0.0-alpha.8"
"astro": "^5.0.0"
},
"devDependencies": {
"@astrojs/test-utils": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
"astro": "^5.0.0-alpha.8"
"astro": "^5.0.0"
},
"devDependencies": {
"@astrojs/test-utils": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"fast-glob": "^3.3.2"
},
"peerDependencies": {
"astro": "^5.0.0-alpha.8"
"astro": "^5.0.0"
},
"devDependencies": {
"@astrojs/test-utils": "workspace:*",
Expand Down
95 changes: 85 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0ba7a39

Please sign in to comment.