Compare commits

...

4 Commits

Author SHA1 Message Date
45deb1a8d2 4.0.4 2023-08-26 10:56:21 +02:00
4c9d3c7148 fix(core): update 2023-08-26 10:56:20 +02:00
320c627d4f 4.0.3 2023-08-26 09:56:21 +02:00
d834e0a220 fix(core): update 2023-08-26 09:56:20 +02:00
3 changed files with 9 additions and 2 deletions

View File

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

View File

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

View File

@@ -3,6 +3,13 @@ import * as paths from './npmextra.paths.js';
import { KeyValueStore } from './npmextra.classes.keyvaluestore.js';
export class AppData {
public static async createAndInit(pathArg?: string) {
const appData = new AppData(pathArg);
await appData.init();
return appData;
}
// instance
public readyDeferred = plugins.smartpromise.defer();
public dirPathArg: string;
private kvStore: KeyValueStore;