fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-09 11:52:30 +01:00
parent a68d59a4d2
commit 93c65acc95
2 changed files with 11 additions and 1 deletions

View File

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

View File

@ -62,4 +62,14 @@ export class AppData {
await this.readyDeferred.promise;
return this.kvStore;
}
public async logMissingKeys() {
const kvStore = await this.getKvStore();
const missingMandatoryKeys = kvStore.getMissingMandatoryKeys();
if (missingMandatoryKeys.length > 0) {
console.log(`The following mandatory keys are missing in the appdata: ${missingMandatoryKeys.join(', ')}`);
} else {
console.log('All mandatory keys are present in the appdata');
}
}
}