@polylith/core 0.1.7 → 0.1.9

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/Service.js CHANGED
@@ -25,7 +25,7 @@ export class Service {
25
25
  if (this[name]) {
26
26
  methods[name] = this[name].bind(this);
27
27
  } else {
28
- console.warn('method', name, 'not implemented on service', this.name ? this.name : '<unnamed service>')
28
+ console.warn('method', name, 'not implemented on service', this.serviceName ? this.serviceName : '<unnamed service>')
29
29
  }
30
30
  }, this);
31
31
 
package/ServiceObject.js CHANGED
@@ -52,8 +52,4 @@ export class ServiceOject extends EventBus {
52
52
  invoke(name, ...args) {
53
53
  return this.fire(name, ...args);
54
54
  }
55
-
56
- async asyncInvoke(name, ...args) {
57
- return await this.asyncFire(name, ...args);
58
- }
59
55
  }
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@polylith/core",
3
3
  "access": "public",
4
- "version": "0.1.7",
4
+ "version": "0.1.9",
5
5
  "description": "Core of the client-side polylith framework",
6
6
  "main": "index.js",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/Ondoher/polylith",
10
+ "directory": "packages/core"
11
+ },
7
12
  "scripts": {
8
13
  "test": "echo \"Error: no test specified\" && exit 1"
9
14
  },
@@ -13,4 +18,4 @@
13
18
  "uuid": "^8.3.2"
14
19
  },
15
20
  "type": "module"
16
- }
21
+ }