fix: 更新提交

This commit is contained in:
han_han9
2025-11-26 22:57:07 +08:00
parent 8a6620cf8f
commit 4c16bec13f
640 changed files with 70914 additions and 13327 deletions

View File

@@ -7,7 +7,7 @@ let outputPath: string = '';
let i = 2;
while (i < process.argv.length) {
let arg = process.argv[i];
const arg = process.argv[i];
switch(arg) {
case '-configPath':
configs = require(process.argv[i + 1]) as GenPackageConfig[];
@@ -25,7 +25,7 @@ while (i < process.argv.length) {
i += 2
}
for (let item of configs) {
let src = assetRootDirPath;
for (const item of configs) {
const src = assetRootDirPath;
generator(src, outputPath, item);
}