mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
d7aa66c345
### Why? Should come up with better solution that does not block PRs with git conflict x-ref: https://vercel.slack.com/archives/C02CDC2ALJH/p1785263902728189?thread_ts=1785263687.502649&cid=C02CDC2ALJH ### How? - Delete `errors.json`, the error-code SWC plugin, generated WASM, merge driver, and validation/build tooling. - Stop attaching error codes to server-rendering digests, redboxes, and telemetry; native `Error.code` and `Error.name` remain available where applicable. - Remove the development-overlay error feedback UI, middleware, and telemetry event that depended on stable codes. - Update fixtures, snapshots, and guidance for code-free errors and numeric-only digests. <!-- NEXT_JS_LLM -->
9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
// @ts-check
|
|
import execa from 'execa'
|
|
|
|
// See https://github.com/vercel/next.js/pull/47375
|
|
await execa('git', ['config', 'index.skipHash', 'false'], {
|
|
stdio: 'inherit',
|
|
reject: false,
|
|
})
|