feat(@vant/cli): support pnpm install (#9824)

This commit is contained in:
neverland 2021-11-09 10:25:48 +08:00 committed by GitHub
parent 8c7d301526
commit 105dda07d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,9 @@
import fs from 'fs-extra';
import execa from 'execa';
import { join } from 'path';
import { consola } from './logger.js';
import { execSync } from 'child_process';
import { ROOT } from './constant.js';
let hasYarnCache: boolean;
@ -17,11 +20,16 @@ export function hasYarn() {
return hasYarnCache;
}
function isUsingPnpm() {
const pnpmLock = join(ROOT, 'pnpm-lock.yaml');
return fs.existsSync(pnpmLock);
}
export async function installDependencies() {
consola.info('Install Dependencies\n');
try {
const manager = hasYarn() ? 'yarn' : 'npm';
const manager = isUsingPnpm() ? 'pnpm' : hasYarn() ? 'yarn' : 'npm';
await execa(manager, ['install', '--prod=false'], {
stdio: 'inherit',