1
0
mirror of synced 2026-04-05 16:08:37 +08:00

feat(cli): 支持配置是否自动安装组件npm包,支持配置安装组件npm包后是否保持package.json不变

This commit is contained in:
roymondchen
2023-02-14 17:16:15 +08:00
parent 8369b2c22c
commit d06a874c3b
5 changed files with 59 additions and 34 deletions

View File

@@ -22,7 +22,13 @@ export const prepareEntryFile = async (app: App) => {
}
Object.keys(contentMap).forEach((file: string) => {
const fileName = `${file}.${useTs ? 'ts' : 'js'}`;
let fileName = `${file}.ts`;
if (useTs) {
app.writeTemp(fileName, contentMap[file]);
} else {
fileName = `${file}.js`;
app.writeTemp(`${file}.d.ts`, `const type: Record<string, any>;\n\nexport default type;`);
}
app.writeTemp(fileName, contentMap[file]);
});
};

View File

@@ -82,7 +82,9 @@ export const resolveAppPackages = (app: App): ModuleMainFilePath => {
dependencies[moduleName] = version;
};
app.options.packages.forEach((item) => {
const { packages = [], npmConfig = {} } = app.options;
packages.forEach((item) => {
if (typeof item === 'object') {
Object.entries(item).forEach(([, packagePath]) => {
getDependencies(packagePath);
@@ -92,26 +94,26 @@ export const resolveAppPackages = (app: App): ModuleMainFilePath => {
}
});
if (Object.keys(dependencies).length) {
const packageFile = path.join(app.options.source, 'package.json');
const packageBakFile = path.join(app.options.source, 'package.json.bak');
if (fs.existsSync(packageFile)) {
fs.copyFileSync(packageFile, packageBakFile);
}
try {
if (npmConfig.autoInstall && Object.keys(dependencies).length) {
if (!npmConfig.keepPackageJsonClean) {
npmInstall(dependencies, app.options.source, app.options.npmConfig);
} catch (e) {
error(e as string);
}
} else {
const packageFile = path.join(app.options.source, 'package.json');
const packageBakFile = path.join(app.options.source, 'package.json.bak');
if (fs.existsSync(packageFile)) {
fs.copyFileSync(packageFile, packageBakFile);
}
if (fs.existsSync(packageBakFile)) {
fs.unlinkSync(packageFile);
fs.renameSync(packageBakFile, packageFile);
npmInstall(dependencies, app.options.source, app.options.npmConfig);
if (fs.existsSync(packageBakFile)) {
fs.unlinkSync(packageFile);
fs.renameSync(packageBakFile, packageFile);
}
}
}
app.options.packages.forEach((item) => {
packages.forEach((item) => {
if (typeof item === 'object') {
Object.entries(item).forEach(([key, packagePath]) => {
setPackages(app.options.source, packagePath, key);
@@ -131,26 +133,30 @@ export const resolveAppPackages = (app: App): ModuleMainFilePath => {
};
const npmInstall = function (dependencies: Record<string, string>, cwd: string, npmConfig: NpmConfig = {}) {
const { client = 'npm', registry = 'https://registry.npmjs.org/' } = npmConfig;
const install = {
npm: 'install',
yarn: 'add',
pnpm: 'add',
}[client];
try {
const { client = 'npm', registry = 'https://registry.npmjs.org/' } = npmConfig;
const install = {
npm: 'install',
yarn: 'add',
pnpm: 'add',
}[client];
const packages = Object.entries(dependencies)
.map(([name, version]) => `${name}@${version}`)
.join(' ');
const packages = Object.entries(dependencies)
.map(([name, version]) => `${name}@${version}`)
.join(' ');
const command = `${client} ${install} ${packages} --registry ${registry}`;
const command = `${client} ${install} ${packages} --registry ${registry}`;
execInfo(cwd);
execInfo(command);
execInfo(cwd);
execInfo(command);
execSync(command, {
stdio: 'inherit',
cwd,
});
execSync(command, {
stdio: 'inherit',
cwd,
});
} catch (e) {
error(e as string);
}
};
/**