fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-08 14:09:20 +01:00
parent 05909f776e
commit d952a761b2
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/npmextra', name: '@push.rocks/npmextra',
version: '4.0.8', version: '4.0.9',
description: 'do more with npm' description: 'do more with npm'
} }

View File

@ -51,7 +51,7 @@ export class AppData {
this.options.dirPath = nogitAppData; this.options.dirPath = nogitAppData;
} }
} }
this.kvStore = new KeyValueStore('custom', 'appkv', this.options.dirPath); this.kvStore = new KeyValueStore('custom', 'appkv', this.options.dirPath, this.options.requiredKeys);
this.readyDeferred.resolve(); this.readyDeferred.resolve();
} }