Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
92 lines
3.1 KiB
JavaScript
92 lines
3.1 KiB
JavaScript
import os from 'os'
|
|
import path from 'path'
|
|
import execa from 'execa'
|
|
import fs from 'fs'
|
|
import fsp from 'fs/promises'
|
|
;(async function () {
|
|
if (process.env.NEXT_SKIP_NATIVE_POSTINSTALL) {
|
|
console.log(
|
|
`Skipping next-swc postinstall due to NEXT_SKIP_NATIVE_POSTINSTALL env`
|
|
)
|
|
return
|
|
}
|
|
|
|
const preferOffline = process.env.NEXT_TEST_PREFER_OFFLINE === '1'
|
|
|
|
let cwd = process.cwd()
|
|
const { version: nextVersion } = JSON.parse(
|
|
fs.readFileSync(path.join(cwd, 'packages', 'next', 'package.json'))
|
|
)
|
|
const { packageManager } = JSON.parse(
|
|
fs.readFileSync(path.join(cwd, 'package.json'))
|
|
)
|
|
|
|
try {
|
|
// if installed swc package version matches monorepo version
|
|
// we can skip re-installing
|
|
for (const pkg of fs.readdirSync(path.join(cwd, 'node_modules', '@next'))) {
|
|
if (
|
|
pkg.startsWith('swc-') &&
|
|
JSON.parse(
|
|
fs.readFileSync(
|
|
path.join(cwd, 'node_modules', '@next', pkg, 'package.json')
|
|
)
|
|
).version === nextVersion
|
|
) {
|
|
console.log(`@next/${pkg}@${nextVersion} already installed, skipping`)
|
|
return
|
|
}
|
|
}
|
|
} catch {}
|
|
|
|
try {
|
|
let tmpdir = path.join(os.tmpdir(), `next-swc-${Date.now()}`)
|
|
fs.mkdirSync(tmpdir, { recursive: true })
|
|
let pkgJson = {
|
|
name: 'dummy-package',
|
|
version: '1.0.0',
|
|
optionalDependencies: {
|
|
'@next/swc-darwin-arm64': nextVersion,
|
|
'@next/swc-darwin-x64': nextVersion,
|
|
'@next/swc-linux-arm64-gnu': nextVersion,
|
|
'@next/swc-linux-arm64-musl': nextVersion,
|
|
'@next/swc-linux-x64-gnu': nextVersion,
|
|
'@next/swc-linux-x64-musl': nextVersion,
|
|
'@next/swc-win32-arm64-msvc': nextVersion,
|
|
'@next/swc-win32-x64-msvc': nextVersion,
|
|
},
|
|
packageManager,
|
|
}
|
|
fs.writeFileSync(path.join(tmpdir, 'package.json'), JSON.stringify(pkgJson))
|
|
fs.writeFileSync(path.join(tmpdir, '.npmrc'), 'node-linker=hoisted')
|
|
|
|
const args = ['add', `next@${nextVersion}`]
|
|
if (preferOffline) {
|
|
args.push('--prefer-offline')
|
|
}
|
|
let { stdout } = await execa('pnpm', args, { cwd: tmpdir })
|
|
console.log(stdout)
|
|
|
|
let pkgs = fs.readdirSync(path.join(tmpdir, 'node_modules/@next'))
|
|
fs.mkdirSync(path.join(cwd, 'node_modules/@next'), { recursive: true })
|
|
|
|
await Promise.all(
|
|
pkgs.map(async (pkg) => {
|
|
const from = path.join(tmpdir, 'node_modules/@next', pkg)
|
|
const to = path.join(cwd, 'node_modules/@next', pkg)
|
|
// The directory from pnpm store is a symlink, which can not be overwritten,
|
|
// so we remove the existing directory before copying
|
|
await fsp.rm(to, { recursive: true, force: true })
|
|
// Renaming is flaky on Windows, and the tmpdir is going to be deleted anyway,
|
|
// so we use copy the directory instead
|
|
return fsp.cp(from, to, { force: true, recursive: true })
|
|
})
|
|
)
|
|
fs.rmSync(tmpdir, { recursive: true, force: true })
|
|
console.log('Installed the following binary packages:', pkgs)
|
|
} catch (e) {
|
|
console.error(e)
|
|
console.error('Failed to load @next/swc binary packages')
|
|
}
|
|
})()
|