feat(config): migrate project configuration to smartconfig.json and update bundler dependencies

This commit is contained in:
2026-03-24 18:15:30 +00:00
parent ad5e0c1afc
commit aea86bd8f5
14 changed files with 1677 additions and 2342 deletions

View File

@@ -44,7 +44,7 @@ export class InitHandler {
}
/**
* Load existing npmextra.json or create empty config
* Load existing smartconfig.json or create empty config
*/
private async loadExistingConfig(): Promise<any> {
const fileExists = await plugins.fs.file(this.smartconfigPath).exists();
@@ -60,7 +60,7 @@ export class InitHandler {
}
/**
* Save config to npmextra.json
* Save config to smartconfig.json
*/
private async saveConfig(config: any): Promise<void> {
const content = JSON.stringify(config, null, 2);