Skip to content

Commit

Permalink
Fix/end to end (#198)
Browse files Browse the repository at this point in the history
* Fix EndToEnd Tests
  • Loading branch information
khuezy authored Aug 31, 2023
1 parent 904e6e6 commit c4d012d
Show file tree
Hide file tree
Showing 8 changed files with 65 additions and 97 deletions.
1 change: 1 addition & 0 deletions examples/app-pages-router/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const nextConfig = {
poweredByHeader: false,
output: "standalone",
transpilePackages: ["@example/shared"],
outputFileTracing: "../sst",
experimental: {
serverActions: true,
},
Expand Down
2 changes: 1 addition & 1 deletion examples/app-pages-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "next build",
"start": "next start --port 3003",
"lint": "next lint",
"clean": "rm -rf .turbo && rm -rf node_modules"
"clean": "rm -rf .turbo node_modules .next .open-next"
},
"dependencies": {
"open-next": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions examples/app-router/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const nextConfig = {
poweredByHeader: false,
output: "standalone",
transpilePackages: ["@example/shared"],
outputFileTracing: "../sst",
experimental: {
serverActions: true,
},
Expand Down
2 changes: 1 addition & 1 deletion examples/app-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "next build",
"start": "next start --port 3001",
"lint": "next lint",
"clean": "rm -rf .turbo && rm -rf node_modules"
"clean": "rm -rf .turbo node_modules .next .open-next"
},
"dependencies": {
"open-next": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions examples/pages-router/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
const nextConfig = {
transpilePackages: ["@example/shared"],
reactStrictMode: true,
output: "standalone",
outputFileTracing: "../sst",
};

module.exports = nextConfig;
2 changes: 1 addition & 1 deletion examples/pages-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "next build",
"start": "next start --port 3002",
"lint": "next lint",
"clean": "rm -rf .turbo && rm -rf node_modules"
"clean": "rm -rf .turbo node_modules .next .open-next"
},
"dependencies": {
"@next/font": "13.4.16",
Expand Down
1 change: 1 addition & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@open-next/utils",
"version": "0.0.0",
"private": true,
"exports": {
".": "./dist/index.js",
"./binary": "./dist/binary.js",
Expand Down
Loading

0 comments on commit c4d012d

Please sign in to comment.