node-pluginsmanager-plugin 0.1.0 → 0.1.1

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.
package/lib/index.d.ts CHANGED
@@ -16,7 +16,7 @@ declare module "node-pluginsmanager-plugin" {
16
16
  public license: string;
17
17
  public main: string;
18
18
  public scripts: string;
19
- public name: object;
19
+ public name: string;
20
20
  public version: string;
21
21
 
22
22
  // specifics
@@ -28,7 +28,7 @@ declare module "node-pluginsmanager-plugin" {
28
28
 
29
29
  // read
30
30
 
31
- public loadDataFromPackageFile(): Promise<Plugin>;
31
+ public loadDataFromPackageFile(): Promise<void>;
32
32
 
33
33
  // load
34
34
 
package/lib/main.js CHANGED
@@ -155,7 +155,7 @@ module.exports = class Plugin extends require("events") {
155
155
 
156
156
  }
157
157
 
158
- return Promise.resolve(this);
158
+ return Promise.resolve();
159
159
 
160
160
  });
161
161
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-pluginsmanager-plugin",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "An abstract parent plugin for node-pluginsmanager",
5
5
  "main": "lib/main.js",
6
6
  "typings": "lib/index.d.ts",