Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [["open-next"]],
"fixed": [["@opennextjs/aws"]],
"linked": [],
"access": "public",
"baseBranch": "main",
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ jobs:
- uses: ./.github/actions/pnpm-setup
- uses: ./.github/actions/lint
- uses: ./.github/actions/build-example
- uses: ./.github/actions/build-docs
74 changes: 0 additions & 74 deletions .github/workflows/nextjs.yml

This file was deleted.

2 changes: 1 addition & 1 deletion packages/open-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"publishConfig": {
"access": "public"
},
"name": "open-next",
"name": "@opennextjs/aws",
"version": "3.1.3",
"bin": {
"open-next": "./dist/index.js"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to keep it as open-next or do we want to change that as well ?

Expand Down
4 changes: 2 additions & 2 deletions packages/tests-e2e/tests/pagesRouter/redirect.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { expect, test } from "@playwright/test";
test("Single redirect", async ({ page }) => {
await page.goto("/next-config-redirect-without-locale-support/");

await page.waitForURL("https://open-next.js.org/");
let el = page.getByRole("heading", { name: "Open source Next.js adapter" });
await page.waitForURL("https://opennext.js.org/");
let el = page.getByRole("heading", { name: "OpenNext" });
await expect(el).toBeVisible();
});

Expand Down
Loading