File size: 2,224 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
#!/usr/bin/env node
import { promises as fs } from 'node:fs'
import path from 'node:path'
import url from 'node:url'
import execa from 'execa'
import { NEXT_DIR, logCommand, execFn } from './pack-util'
const nextSwcDir = path.join(NEXT_DIR, 'packages/next-swc')
export default async function buildNative(
buildNativeArgs: string[]
): Promise<void> {
const buildCommand = ['pnpm', 'run', 'build-native', ...buildNativeArgs]
logCommand('Build native bindings', buildCommand)
await execa(buildCommand[0], buildCommand.slice(1), {
cwd: nextSwcDir,
// Without a shell, `pnpm run build-native` returns a 0 exit code on SIGINT?
shell: true,
env: {
NODE_ENV: process.env.NODE_ENV,
CARGO_TERM_COLOR: 'always',
TTY: '1',
},
stdio: 'inherit',
})
await execFn(
'Copy generated types to `next/src/build/swc/generated-native.d.ts`',
() => writeTypes()
)
}
// Check if this file is being run directly
if (import.meta.url === url.pathToFileURL(process.argv[1]).toString()) {
buildNative(process.argv.slice(2)).catch((err) => {
console.error(err)
process.exit(1)
})
}
async function writeTypes() {
const generatedTypesPath = path.join(
NEXT_DIR,
'packages/next-swc/native/index.d.ts'
)
const vendoredTypesPath = path.join(
NEXT_DIR,
'packages/next/src/build/swc/generated-native.d.ts'
)
const generatedTypesMarker = '// GENERATED-TYPES-BELOW\n'
const generatedNotice =
'// DO NOT MANUALLY EDIT THESE TYPES\n' +
'// You can regenerate this file by running `pnpm swc-build-native` in the root of the repo.\n\n'
const generatedTypes = await fs.readFile(generatedTypesPath, 'utf8')
let vendoredTypes = await fs.readFile(vendoredTypesPath, 'utf8')
vendoredTypes = vendoredTypes.split(generatedTypesMarker)[0]
vendoredTypes =
vendoredTypes + generatedTypesMarker + generatedNotice + generatedTypes
await fs.writeFile(vendoredTypesPath, vendoredTypes)
const prettifyCommand = ['prettier', '--write', vendoredTypesPath]
logCommand('Prettify generated types', prettifyCommand)
await execa(prettifyCommand[0], prettifyCommand.slice(1), {
cwd: NEXT_DIR,
stdio: 'inherit',
preferLocal: true,
})
}
|