82 lines
2.1 KiB
TypeScript
82 lines
2.1 KiB
TypeScript
import { execSync } from 'child_process';
|
|
import { existsSync } from 'fs';
|
|
import { join } from 'path';
|
|
|
|
/*
|
|
* Because we don't want to depend on @nrwl/workspace (to speed up the workspace creation)
|
|
* we duplicate the helper functions from @nrwl/workspace in this file.
|
|
*/
|
|
|
|
export function detectPackageManager(dir = '') {
|
|
return existsSync(join(dir, 'yarn.lock'))
|
|
? 'yarn'
|
|
: existsSync(join(dir, 'pnpm-lock.yaml'))
|
|
? 'pnpm'
|
|
: 'npm';
|
|
}
|
|
|
|
/**
|
|
* Returns commands for the package manager used in the workspace.
|
|
* By default, the package manager is derived based on the lock file,
|
|
* but it can also be passed in explicitly.
|
|
*
|
|
* Example:
|
|
*
|
|
* ```javascript
|
|
* execSync(`${getPackageManagerCommand().addDev} my-dev-package`);
|
|
* ```
|
|
*
|
|
*/
|
|
export function getPackageManagerCommand(
|
|
packageManager = detectPackageManager()
|
|
): {
|
|
install: string;
|
|
add: string;
|
|
addDev: string;
|
|
rm: string;
|
|
exec: string;
|
|
list: string;
|
|
run: (script: string, args: string) => string;
|
|
} {
|
|
switch (packageManager) {
|
|
case 'yarn':
|
|
return {
|
|
install: 'yarn',
|
|
add: 'yarn add',
|
|
addDev: 'yarn add -D',
|
|
rm: 'yarn remove',
|
|
exec: 'yarn',
|
|
run: (script: string, args: string) => `yarn ${script} ${args}`,
|
|
list: 'yarn list',
|
|
};
|
|
|
|
case 'pnpm':
|
|
return {
|
|
install: 'pnpm install --no-frozen-lockfile', // explicitly disable in case of CI
|
|
add: 'pnpm add',
|
|
addDev: 'pnpm add -D',
|
|
rm: 'pnpm rm',
|
|
exec: 'pnpx',
|
|
run: (script: string, args: string) => `pnpm run ${script} -- ${args}`,
|
|
list: 'pnpm ls --depth 100',
|
|
};
|
|
|
|
case 'npm':
|
|
return {
|
|
install: 'npm install --legacy-peer-deps',
|
|
add: 'npm install --legacy-peer-deps',
|
|
addDev: 'npm install --legacy-peer-deps -D',
|
|
rm: 'npm rm',
|
|
exec: 'npx',
|
|
run: (script: string, args: string) => `npm run ${script} -- ${args}`,
|
|
list: 'npm ls',
|
|
};
|
|
}
|
|
}
|
|
|
|
export function getPackageManagerVersion(
|
|
packageManager: 'npm' | 'yarn' | 'pnpm'
|
|
): string {
|
|
return execSync(`${packageManager} --version`).toString('utf-8').trim();
|
|
}
|