Compare commits

..

2 Commits

Author SHA1 Message Date
3ce6036478 4.0.6 2024-01-27 19:03:06 +01:00
54bf310403 fix(core): update 2024-01-27 19:03:06 +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.5", "version": "4.0.6",
"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.5', version: '4.0.6',
description: 'do more with npm' description: 'do more with npm'
} }

View File

@ -21,7 +21,7 @@ export class AppData {
private kvStore: KeyValueStore; private kvStore: KeyValueStore;
constructor(pathArg?: string) { constructor(pathArg?: string) {
this.dirPathArg = pathArg; this.dirPathArg = pathArg;
this.init; this.init();
} }
/** /**