Compare commits

..

6 Commits

Author SHA1 Message Date
1c0b428606 4.0.12 2024-02-09 13:47:52 +01:00
90e8625771 fix(core): update 2024-02-09 13:47:51 +01:00
abbce0d4a1 4.0.11 2024-02-09 11:52:31 +01:00
93c65acc95 fix(core): update 2024-02-09 11:52:30 +01:00
a68d59a4d2 4.0.10 2024-02-09 05:16:02 +01:00
0133dca698 fix(core): update 2024-02-09 05:16:02 +01:00
4 changed files with 18 additions and 8 deletions

View File

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

12
pnpm-lock.yaml generated
View File

@ -12,13 +12,13 @@ dependencies:
specifier: ^5.0.10 specifier: ^5.0.10
version: 5.0.10 version: 5.0.10
'@push.rocks/smartlog': '@push.rocks/smartlog':
specifier: ^3.0.3 specifier: ^3.0.2
version: 3.0.3 version: 3.0.3
'@push.rocks/smartpath': '@push.rocks/smartpath':
specifier: ^5.0.11 specifier: ^5.0.11
version: 5.0.11 version: 5.0.11
'@push.rocks/smartpromise': '@push.rocks/smartpromise':
specifier: ^4.0.3 specifier: ^4.0.2
version: 4.0.3 version: 4.0.3
'@push.rocks/smartrx': '@push.rocks/smartrx':
specifier: ^3.0.7 specifier: ^3.0.7
@ -29,19 +29,19 @@ dependencies:
devDependencies: devDependencies:
'@git.zone/tsbuild': '@git.zone/tsbuild':
specifier: ^2.1.72 specifier: ^2.1.66
version: 2.1.72 version: 2.1.72
'@git.zone/tsrun': '@git.zone/tsrun':
specifier: ^1.2.46 specifier: ^1.2.44
version: 1.2.46(@types/node@20.11.16) version: 1.2.46(@types/node@20.11.16)
'@git.zone/tstest': '@git.zone/tstest':
specifier: ^1.0.86 specifier: ^1.0.77
version: 1.0.86(@types/node@20.11.16)(sinon@17.0.1) version: 1.0.86(@types/node@20.11.16)(sinon@17.0.1)
'@push.rocks/tapbundle': '@push.rocks/tapbundle':
specifier: ^5.0.15 specifier: ^5.0.15
version: 5.0.15(sinon@17.0.1) version: 5.0.15(sinon@17.0.1)
'@types/node': '@types/node':
specifier: ^20.11.16 specifier: ^20.11.6
version: 20.11.16 version: 20.11.16
packages: packages:

View File

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

View File

@ -62,4 +62,14 @@ export class AppData {
await this.readyDeferred.promise; await this.readyDeferred.promise;
return this.kvStore; 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:\n -> ${missingMandatoryKeys.join(',\n -> ')}`);
} else {
console.log('All mandatory keys are present in the appdata');
}
}
} }