BREAKING CHANGE(core): update

This commit is contained in:
2024-02-12 19:16:43 +01:00
parent bb9de1b13b
commit 39ab01b4af
4 changed files with 29 additions and 22 deletions

View File

@@ -59,12 +59,12 @@ export class AppData {
this.options.dirPath = nogitAppData;
}
}
this.kvStore = new KeyValueStore(
'custom',
'appkv',
this.options.dirPath,
this.options.requiredKeys
);
this.kvStore = new KeyValueStore({
typeArg: 'custom',
identityArg: 'appkv',
customPath: this.options.dirPath,
mandatoryKeys: this.options.requiredKeys
});
if (this.options.envMapping) {
const qenvInstance = new plugins.qenv.Qenv(process.cwd(), '~/.cloudlyrc');