File size: 6,166 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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
// @ts-check
const execa = require('execa')
const fs = require('node:fs/promises')
const os = require('node:os')
const path = require('node:path')
async function main() {
const [
githubSha,
githubHeadSha,
tarballDirectory = path.join(os.tmpdir(), 'vercel-nextjs-preview-tarballs'),
] = process.argv.slice(2)
const repoRoot = path.resolve(__dirname, '..')
await fs.mkdir(tarballDirectory, { recursive: true })
const [{ stdout: shortSha }, { stdout: dateString }] = await Promise.all([
execa('git', ['rev-parse', '--short', githubSha]),
// Source: https://github.com/facebook/react/blob/767f52237cf7892ad07726f21e3e8bacfc8af839/scripts/release/utils.js#L114
execa(`git`, [
'show',
'-s',
'--no-show-signature',
'--format=%cd',
'--date=format:%Y%m%d',
githubSha,
]),
])
const lernaConfig = JSON.parse(
await fs.readFile(path.join(repoRoot, 'lerna.json'), 'utf8')
)
// 15.0.0-canary.17 -> 15.0.0
// 15.0.0 -> 15.0.0
const [semverStableVersion] = lernaConfig.version.split('-')
const version = `${semverStableVersion}-preview-${shortSha}-${dateString}`
console.info(`Designated version: ${version}`)
const nativePackagesDir = path.join(repoRoot, 'crates/napi/npm')
const platforms = (await fs.readdir(nativePackagesDir)).filter(
(name) => !name.startsWith('.')
)
console.info(`Creating tarballs for next-swc packages`)
const nextSwcPackageNames = new Set()
await Promise.all(
platforms.map(async (platform) => {
const binaryName = `next-swc.${platform}.node`
try {
await fs.cp(
path.join(repoRoot, 'packages/next-swc/native', binaryName),
path.join(nativePackagesDir, platform, binaryName)
)
} catch (error) {
if (error.code === 'ENOENT') {
console.warn(
`Skipping next-swc platform '${platform}' tarball creation because ${binaryName} was never built.`
)
return
}
throw error
}
const manifest = JSON.parse(
await fs.readFile(
path.join(nativePackagesDir, platform, 'package.json'),
'utf8'
)
)
manifest.version = version
await fs.writeFile(
path.join(nativePackagesDir, platform, 'package.json'),
JSON.stringify(manifest, null, 2) + '\n'
)
// By encoding the package name in the directory, vercel-packages can later extract the package name of a tarball from its path when `tarballDirectory` is zipped.
const packDestination = path.join(tarballDirectory, manifest.name)
await fs.mkdir(packDestination, { recursive: true })
const { stdout } = await execa(
'npm',
['pack', '--pack-destination', packDestination],
{
cwd: path.join(nativePackagesDir, platform),
}
)
// tarball name is printed as the last line of npm-pack
const tarballName = stdout.trim().split('\n').pop()
console.info(`Created tarball ${path.join(packDestination, tarballName)}`)
nextSwcPackageNames.add(manifest.name)
})
)
const lernaListJson = await execa('pnpm', [
'--silent',
'lerna',
'list',
'--json',
])
const packages = JSON.parse(lernaListJson.stdout)
const packagesByVersion = new Map()
// vercel-packages finds GH artifacts via the head SHA because that's the only
// API GitHub offers.
for (const packageInfo of packages) {
packagesByVersion.set(
packageInfo.name,
`https://vercel-packages.vercel.app/next/commits/${githubHeadSha}/${packageInfo.name}`
)
}
for (const nextSwcPackageName of nextSwcPackageNames) {
packagesByVersion.set(
nextSwcPackageName,
`https://vercel-packages.vercel.app/next/commits/${githubHeadSha}/${nextSwcPackageName}`
)
}
console.info(`Creating tarballs for regular packages`)
for (const packageInfo of packages) {
if (packageInfo.private) {
continue
}
const packageJsonPath = path.join(packageInfo.location, 'package.json')
const packageJson = await fs.readFile(packageJsonPath, 'utf8')
const manifest = JSON.parse(packageJson)
manifest.version = version
if (packageInfo.name === 'next') {
manifest.optionalDependencies ??= {}
for (const nextSwcPackageName of nextSwcPackageNames) {
manifest.optionalDependencies[nextSwcPackageName] =
packagesByVersion.get(nextSwcPackageName)
}
}
// ensure it depends on packages from this release.
for (const [dependencyName, version] of packagesByVersion) {
if (manifest.dependencies?.[dependencyName] !== undefined) {
manifest.dependencies[dependencyName] = version
}
if (manifest.devDependencies?.[dependencyName] !== undefined) {
manifest.devDependencies[dependencyName] = version
}
if (manifest.peerDependencies?.[dependencyName] !== undefined) {
manifest.peerDependencies[dependencyName] = version
}
if (manifest.optionalDependencies?.[dependencyName] !== undefined) {
manifest.optionalDependencies[dependencyName] = version
}
}
await fs.writeFile(
packageJsonPath,
JSON.stringify(manifest, null, 2) +
// newline will be added by Prettier
'\n'
)
// By encoding the package name in the directory, vercel-packages can later extract the package name of a tarball from its path when `tarballDirectory` is zipped.
const packDestination = path.join(tarballDirectory, manifest.name)
await fs.mkdir(packDestination, { recursive: true })
const { stdout } = await execa(
'npm',
['pack', '--pack-destination', packDestination],
{
cwd: packageInfo.location,
}
)
// tarball name is printed as the last line of npm-pack
const tarballName = stdout.trim().split('\n').pop()
console.info(`Created tarball ${path.join(packDestination, tarballName)}`)
}
console.info(
`When this job is completed, a Next.js preview build will be available under ${packagesByVersion.get('next')}`
)
}
main().catch((err) => {
console.error(err)
process.exit(1)
})
|