Skip to content

Commit 2d46bcf

Browse files
authored
Merge branch 'main' into tn/cypress12
2 parents f534a23 + c5d3d4f commit 2d46bcf

File tree

8 files changed

+29
-28
lines changed

8 files changed

+29
-28
lines changed

.github/workflows/add-to-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
app_id: ${{ secrets.TOKENS_APP_ID }}
1515
private_key: ${{ secrets.TOKENS_PRIVATE_KEY }}
1616
- name: Add issue to Project
17-
uses: actions/add-to-project@v0.4.1
17+
uses: actions/add-to-project@v0.5.0
1818
with:
1919
project-url: https://github.com/orgs/netlify/projects/199
2020
github-token: ${{ steps.generate_token.outputs.token }}

demos/nx-next-monorepo-demo/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/nx-next-monorepo-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@testing-library/react": "13.4.0",
3131
"@types/jest": "28.1.8",
3232
"@types/node": "16.11.7",
33-
"@types/react": "18.0.35",
33+
"@types/react": "18.0.38",
3434
"@types/react-dom": "18.0.11",
3535
"@typescript-eslint/eslint-plugin": "^5.36.1",
3636
"@typescript-eslint/parser": "^5.36.1",

demos/turborepo-next-monorepo-demo/apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"next-transpile-modules": "9.0.0",
2222
"tsconfig": "*",
2323
"@types/node": "^17.0.12",
24-
"@types/react": "18.0.35",
24+
"@types/react": "18.0.38",
2525
"typescript": "^4.5.3"
2626
}
2727
}

demos/turborepo-next-monorepo-demo/apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"next-transpile-modules": "9.0.0",
2222
"tsconfig": "*",
2323
"@types/node": "^17.0.12",
24-
"@types/react": "18.0.35",
24+
"@types/react": "18.0.38",
2525
"typescript": "^4.5.3"
2626
}
2727
}

demos/turborepo-next-monorepo-demo/package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/runtime/src/helpers/files.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const moveStaticPages = async ({
8585
basePath?: string
8686
}): Promise<void> => {
8787
console.log('Moving static page files to serve from CDN...')
88-
const outputDir = join(netlifyConfig.build.publish, target === 'server' ? 'server' : 'serverless')
88+
const outputDir = join(netlifyConfig.build.publish, target === 'serverless' ? 'serverless' : 'server')
8989
const buildId = readFileSync(join(netlifyConfig.build.publish, 'BUILD_ID'), 'utf8').trim()
9090
const dataDir = join('_next', 'data', buildId)
9191
await ensureDir(join(netlifyConfig.build.publish, dataDir))
@@ -134,6 +134,7 @@ export const moveStaticPages = async ({
134134
const dest = join(netlifyConfig.build.publish, targetPath)
135135

136136
try {
137+
console.log(`Moving ${source} to ${dest}`)
137138
await move(source, dest)
138139
} catch (error) {
139140
console.warn('Error moving file', source, error)

0 commit comments

Comments
 (0)