node-confmanager 1.4.6 → 1.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/index.d.ts +3 -3
  2. package/package.json +2 -2
package/lib/index.d.ts CHANGED
@@ -14,9 +14,9 @@ declare module "node-confmanager" {
14
14
 
15
15
  protected _loadFromConsole(): Promise<void>;
16
16
 
17
- public shortcut(key: string, shortkey: string): ConfManager;
18
- public clearShortcuts(): ConfManager;
19
- public clear(): ConfManager;
17
+ public shortcut(key: string, shortkey: string): this;
18
+ public clearShortcuts(): this;
19
+ public clear(): this;
20
20
  public deleteFile(): Promise<void>;
21
21
  public get(key: string): any;
22
22
  public fileExists(): Promise<boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-confmanager",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "A configuration manager",
5
5
  "main": "lib/main.js",
6
6
  "typings": "lib/index.d.ts",
@@ -45,7 +45,7 @@
45
45
  "url": "https://github.com/Psychopoulet/node-confmanager/issues"
46
46
  },
47
47
  "dependencies": {
48
- "node-containerpattern": "1.4.4",
48
+ "node-containerpattern": "1.4.5",
49
49
  "fs-extra": "10.1.0"
50
50
  },
51
51
  "devDependencies": {