fix(core): update

This commit is contained in:
Philipp Kunz 2024-04-14 02:10:29 +02:00
parent 686aa0d2e7
commit 5eebd0fd02
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: '5.0.11', version: '5.0.12',
description: 'do more with npm' description: 'do more with npm'
} }

View File

@ -128,7 +128,7 @@ export class AppData<T = any> {
public async logMissingKeys() { public async logMissingKeys() {
const kvStore = await this.getKvStore(); const kvStore = await this.getKvStore();
const missingMandatoryKeys = kvStore.getMissingMandatoryKeys(); const missingMandatoryKeys = await kvStore.getMissingMandatoryKeys();
if (missingMandatoryKeys.length > 0) { if (missingMandatoryKeys.length > 0) {
console.log( console.log(
`The following mandatory keys are missing in the appdata:\n -> ${missingMandatoryKeys.join( `The following mandatory keys are missing in the appdata:\n -> ${missingMandatoryKeys.join(