mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-20 05:24:57 +08:00
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
import chalk from 'chalk';
|
|
import { exec } from 'child_process';
|
|
import { promisify } from 'util';
|
|
import { getPackageManager } from './config';
|
|
|
|
const execPromise = promisify(exec);
|
|
const packageManager = getPackageManager();
|
|
|
|
|
|
export function checkYarnOrCNPM() {
|
|
|
|
// Don't show messages if user has already changed the default.
|
|
if (packageManager !== 'default') {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
return Promise
|
|
.all([checkYarn(), checkCNPM()])
|
|
.then((data: Array<boolean>) => {
|
|
const [isYarnInstalled, isCNPMInstalled] = data;
|
|
if (isYarnInstalled && isCNPMInstalled) {
|
|
console.log(chalk.yellow('You can `ng set --global packageManager=yarn` '
|
|
+ 'or `ng set --global packageManager=cnpm`.'));
|
|
} else if (isYarnInstalled) {
|
|
console.log(chalk.yellow('You can `ng set --global packageManager=yarn`.'));
|
|
} else if (isCNPMInstalled) {
|
|
console.log(chalk.yellow('You can `ng set --global packageManager=cnpm`.'));
|
|
} else {
|
|
if (packageManager !== 'default' && packageManager !== 'npm') {
|
|
console.log(chalk.yellow(`Seems that ${packageManager} is not installed.`));
|
|
console.log(chalk.yellow('You can `ng set --global packageManager=npm`.'));
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function checkYarn() {
|
|
return execPromise('yarn --version')
|
|
.then(() => true, () => false);
|
|
}
|
|
|
|
function checkCNPM() {
|
|
return execPromise('cnpm --version')
|
|
.then(() => true, () => false);
|
|
}
|