@polylith/core 0.1.7 → 0.1.8

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/ServiceObject.js +0 -4
  2. package/package.json +7 -2
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,10 +1,15 @@
1
1
  {
2
2
  "name": "@polylith/core",
3
3
  "access": "public",
4
- "version": "0.1.7",
4
+ "version": "0.1.8",
5
5
  "description": "Core of the client-side polylith framework",
6
6
  "main": "index.js",
7
- "scripts": {
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/Ondoher/polylith",
10
+ "directory": "packages/client/core"
11
+ },
12
+ "scripts": {
8
13
  "test": "echo \"Error: no test specified\" && exit 1"
9
14
  },
10
15
  "author": "Glenn Anderson",