-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
automatically copy over generated types when building the wasm/native…
… binary
- Loading branch information
1 parent
d9b0f83
commit 2003356
Showing
7 changed files
with
148 additions
and
14 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#!/usr/bin/env node | ||
|
||
const { | ||
NEXT_DIR, | ||
booleanArg, | ||
execAsyncWithOutput, | ||
execFn, | ||
namedValueArg, | ||
} = require('./pack-util.cjs') | ||
const fs = require('fs') | ||
const path = require('path') | ||
|
||
const args = process.argv.slice(2) | ||
|
||
// strip --no-build and --project when called from pack-next.cjs | ||
booleanArg(args, '--no-build') | ||
namedValueArg(args, '--project') | ||
|
||
const targetDir = path.join(NEXT_DIR, 'target') | ||
const nextSwcDir = path.join(NEXT_DIR, 'packages/next-swc') | ||
|
||
module.exports = (async () => { | ||
for (let i = 0; i < 2; i++) { | ||
try { | ||
await execAsyncWithOutput( | ||
'Build wasm bindings', | ||
['pnpm', 'run', 'build-wasm', ...args], | ||
{ | ||
cwd: nextSwcDir, | ||
shell: process.platform === 'win32' ? 'powershell.exe' : false, | ||
env: { | ||
CARGO_TERM_COLOR: 'always', | ||
TTY: '1', | ||
...process.env, | ||
}, | ||
} | ||
) | ||
} catch (e) { | ||
if ( | ||
e.stderr | ||
.toString() | ||
.includes('the compiler unexpectedly panicked. this is a bug.') | ||
) { | ||
fs.rmSync(path.join(targetDir, 'release/incremental'), { | ||
recursive: true, | ||
force: true, | ||
}) | ||
fs.rmSync(path.join(targetDir, 'debug/incremental'), { | ||
recursive: true, | ||
force: true, | ||
}) | ||
continue | ||
} | ||
delete e.stdout | ||
delete e.stderr | ||
throw e | ||
} | ||
break | ||
} | ||
|
||
execFn( | ||
'Copy generated types to `next/src/build/swc/generated-wasm.d.ts`', | ||
() => writeTypes() | ||
) | ||
})() | ||
|
||
function writeTypes() { | ||
const generatedTypesPath = path.join(NEXT_DIR, 'crates/wasm/pkg/wasm.d.ts') | ||
const vendoredTypesPath = path.join( | ||
NEXT_DIR, | ||
'packages/next/src/build/swc/generated-wasm.d.ts' | ||
) | ||
|
||
const generatedNotice = | ||
'// DO NOT MANUALLY EDIT THESE TYPES\n// You can regenerate this file by running `pnpm swc-build-wasm` in the root of the repo.\n\n' | ||
|
||
const generatedTypes = fs.readFileSync(generatedTypesPath, 'utf8') | ||
|
||
const vendoredTypes = generatedNotice + generatedTypes | ||
|
||
fs.writeFileSync(vendoredTypesPath, vendoredTypes) | ||
} |
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