feat(cli): 新增npm install 参数配置

This commit is contained in:
roymondchen 2024-12-09 20:13:50 +08:00 committed by roymondchen
parent e6909dc052
commit 3cae4fbc1c
2 changed files with 5 additions and 2 deletions

View File

@ -50,6 +50,7 @@ export interface NpmConfig {
autoInstall?: boolean;
/** 安装组件后npm默认会将依赖写入package.json中将该值设置为true则不会写入默认为true */
keepPackageJsonClean?: boolean;
installArgs?: string;
}
export interface ModuleMainFilePath {

View File

@ -38,7 +38,7 @@ const getRelativePath = (str: string, base: string) => (path.isAbsolute(str) ? p
const npmInstall = function (dependencies: Record<string, string>, cwd: string, npmConfig: NpmConfig = {}) {
try {
const { client = 'npm', registry } = npmConfig;
const { client = 'npm', registry, installArgs = '' } = npmConfig;
const install = {
npm: 'install',
yarn: 'add',
@ -49,7 +49,9 @@ const npmInstall = function (dependencies: Record<string, string>, cwd: string,
.map(([name, version]) => (version ? `${name}@${version}` : name))
.join(' ');
const command = `${client} ${install} ${packages}${registry ? ` --registry ${registry}` : ''}`;
const installArgsString = `${installArgs ? ` ${installArgs}` : ''}`;
const registryString = `${registry ? ` --registry ${registry}` : ''}`;
const command = `${client} ${install}${installArgsString} ${packages}${registryString}`;
execInfo(cwd);
execInfo(command);