File size: 811 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 |
// This script must be run with tsx
import { NEXT_DIR, exec } from './pack-util'
import fs from 'fs'
import path from 'path'
const TARBALLS = `${NEXT_DIR}/tarballs`
const PROJECT_DIR = path.resolve(process.argv[2])
function realPathIfAny(path: fs.PathLike) {
try {
return fs.realpathSync(path)
} catch {
return null
}
}
const packages = {
next: realPathIfAny(`${PROJECT_DIR}/node_modules/next`),
'next-swc': realPathIfAny(`${PROJECT_DIR}/node_modules/@next/swc`),
'next-mdx': realPathIfAny(`${PROJECT_DIR}/node_modules/@next/mdx`),
'next-bundle-analyzer': realPathIfAny(
`${PROJECT_DIR}/node_modules/@next/bundle-anlyzer`
),
}
for (const [key, path] of Object.entries(packages)) {
if (!path) continue
exec(`Unpack ${key}`, `tar -xf '${TARBALLS}/${key}.tar' -C '${path}'`)
}
|