mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-22 09:10:50 +00:00
36 lines
997 B
JavaScript
36 lines
997 B
JavaScript
|
const { execSync } = require('child_process')
|
||
|
const path = require('path')
|
||
|
const fs = require('fs')
|
||
|
|
||
|
const buildDir = path.join(process.cwd(), 'build')
|
||
|
const distDir = path.join(process.cwd(), 'dist')
|
||
|
|
||
|
const buildIndexJs = path.join(buildDir, 'index.js')
|
||
|
const distIndexJs = path.join(distDir, 'index.js')
|
||
|
const distCleanupJs = path.join(distDir, 'cleanup.js')
|
||
|
|
||
|
if (!fs.existsSync(buildDir)) {
|
||
|
fs.mkdirSync(buildDir)
|
||
|
}
|
||
|
|
||
|
// Build the main index.js file
|
||
|
console.log('Building index.js...')
|
||
|
execSync(`./node_modules/.bin/ncc build index.js -q -o ${buildDir}`)
|
||
|
if (fs.existsSync(distIndexJs)) {
|
||
|
fs.unlinkSync(distIndexJs)
|
||
|
}
|
||
|
fs.renameSync(buildIndexJs, distIndexJs)
|
||
|
|
||
|
// Build the cleanup.js file
|
||
|
console.log('Building cleanup.js...')
|
||
|
execSync(`./node_modules/.bin/ncc build cleanup.js -q -o ${buildDir}`)
|
||
|
if (fs.existsSync(distCleanupJs)) {
|
||
|
fs.unlinkSync(distCleanupJs)
|
||
|
}
|
||
|
fs.renameSync(buildIndexJs, distCleanupJs)
|
||
|
|
||
|
console.log('Cleaning up...')
|
||
|
fs.rmdirSync(buildDir)
|
||
|
|
||
|
console.log('Done')
|