76 lines
1.8 KiB
TypeScript
76 lines
1.8 KiB
TypeScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import chalk from 'chalk'
|
|
import spawn from 'cross-spawn'
|
|
import type { PackageManager } from './get-pkg-manager'
|
|
|
|
interface InstallArgs {
|
|
/**
|
|
* Indicate whether to install packages using npm, pnpm or Yarn.
|
|
*/
|
|
packageManager: PackageManager
|
|
/**
|
|
* Indicate whether the given dependencies are devDependencies.
|
|
*/
|
|
devDependencies?: boolean
|
|
}
|
|
|
|
/**
|
|
* Spawn a package manager installation with either Yarn or NPM.
|
|
*
|
|
* @returns A Promise that resolves once the installation is finished.
|
|
*/
|
|
export function install(
|
|
root: string,
|
|
{ packageManager, devDependencies }: InstallArgs
|
|
): Promise<void> {
|
|
/**
|
|
* (p)npm-specific command-line flags.
|
|
*/
|
|
const npmFlags: string[] = []
|
|
/**
|
|
* Yarn-specific command-line flags.
|
|
*/
|
|
const yarnFlags: string[] = []
|
|
/**
|
|
* Return a Promise that resolves once the installation is finished.
|
|
*/
|
|
return new Promise((resolve, reject) => {
|
|
let args: string[]
|
|
let command = packageManager
|
|
const useYarn = packageManager === 'yarn'
|
|
|
|
|
|
args = ['install'];
|
|
|
|
/**
|
|
* Add any package manager-specific flags.
|
|
*/
|
|
if (useYarn) {
|
|
args.push(...yarnFlags)
|
|
} else {
|
|
args.push(...npmFlags)
|
|
}
|
|
|
|
/**
|
|
* Spawn the installation process.
|
|
*/
|
|
const child = spawn(command, args, {
|
|
stdio: 'inherit',
|
|
env: {
|
|
...process.env,
|
|
ADBLOCK: '1',
|
|
// we set NODE_ENV to development as pnpm skips dev
|
|
// dependencies when production
|
|
NODE_ENV: 'development',
|
|
DISABLE_OPENCOLLECTIVE: '1',
|
|
},
|
|
})
|
|
child.on('close', (code) => {
|
|
if (code !== 0) {
|
|
reject({ command: `${command} ${args.join(' ')}` })
|
|
return
|
|
}
|
|
resolve()
|
|
})
|
|
})
|
|
} |