-
Notifications
You must be signed in to change notification settings - Fork 27.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'canary' into feedthejim/dev-server-restart
- Loading branch information
Showing
15 changed files
with
328 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"recommendations": [ | ||
// Linting / Formatting | ||
"rust-lang.rust-analyzer", | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"usernamehw.errorlens", | ||
|
||
// Testing | ||
"orta.vscode-jest", | ||
|
||
// PR management / Reviewing | ||
"github.vscode-pull-request-github", | ||
|
||
// Showing todo comments | ||
"gruntfuggly.todo-tree", | ||
|
||
// Collaborating | ||
"ms-vsliveshare.vsliveshare", | ||
|
||
// Debugging | ||
"ms-vscode.vscode-js-profile-flame" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,54 @@ | ||
{ | ||
// Formatting using Prettier by default for all languages | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
// Formatting using Prettier for JavaScript, overrides VSCode default. | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
// Formatting using Rust-Analyzer for Rust. | ||
"[rust]": { | ||
"editor.defaultFormatter": "rust-lang.rust-analyzer" | ||
}, | ||
// Linting using ESLint. | ||
"eslint.validate": [ | ||
"javascript", | ||
"javascriptreact", | ||
{ "language": "typescript", "autoFix": true }, | ||
{ "language": "typescriptreact", "autoFix": true } | ||
"typescript", | ||
"typescriptreact" | ||
], | ||
"debug.javascript.unmapMissingSources": true, | ||
// Disable Jest autoRun as otherwise it will start running all tests the first time. | ||
"jest.autoRun": "off", | ||
|
||
// Debugging. | ||
"debug.javascript.unmapMissingSources": true, | ||
|
||
"files.exclude": { | ||
"**/node_modules": false, | ||
"node_modules": true, | ||
"*[!test]**/node_modules": true | ||
} | ||
}, | ||
|
||
// Ensure enough terminal history is preserved when running tests. | ||
"terminal.integrated.scrollback": 10000, | ||
|
||
// Configure todo-tree to exclude node_modules, dist, and compiled. | ||
"todo-tree.filtering.excludeGlobs": [ | ||
"**/node_modules", | ||
"**/dist", | ||
"**/compiled" | ||
], | ||
// Match TODO-APP in addition to other TODOs. | ||
"todo-tree.general.tags": [ | ||
"BUG", | ||
"HACK", | ||
"FIXME", | ||
"TODO", | ||
"XXX", | ||
"[ ]", | ||
"[x]", | ||
"TODO-APP" | ||
], | ||
|
||
// Disable TypeScript surveys. | ||
"typescript.surveys.enabled": false | ||
} |
19 changes: 19 additions & 0 deletions
19
packages/next/client/components/bailout-to-client-rendering.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { suspense } from '../../shared/lib/dynamic-no-ssr' | ||
import { staticGenerationAsyncStorage } from './static-generation-async-storage' | ||
|
||
export function bailoutToClientRendering(): boolean | never { | ||
const staticGenerationStore = | ||
staticGenerationAsyncStorage && 'getStore' in staticGenerationAsyncStorage | ||
? staticGenerationAsyncStorage?.getStore() | ||
: staticGenerationAsyncStorage | ||
|
||
if (staticGenerationStore?.forceStatic) { | ||
return true | ||
} | ||
|
||
if (staticGenerationStore?.isStaticGeneration) { | ||
suspense() | ||
} | ||
|
||
return false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.