Compare commits

..

2 Commits

Author SHA1 Message Date
6174490e8e 4.0.9 2024-02-08 14:09:20 +01:00
d952a761b2 fix(core): update 2024-02-08 14:09:20 +01:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/npmextra", "name": "@push.rocks/npmextra",
"version": "4.0.8", "version": "4.0.9",
"private": false, "private": false,
"description": "do more with npm", "description": "do more with npm",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

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();
} }