@polylith/core 0.1.4 → 0.1.6

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/Registry.js CHANGED
@@ -103,6 +103,7 @@ export class Registry {
103
103
  return Promise.allSettled(promises)
104
104
  .then(function () {
105
105
  this.callAll(services, 'ready');
106
+ this.fire('ready', prefix);
106
107
  }.bind(this));
107
108
  }
108
109
  }
package/Service.js CHANGED
@@ -12,7 +12,7 @@ export class Service {
12
12
  this.serviceObject.implementOn(this, 'unlisten');
13
13
 
14
14
  if (name) {
15
- tregistry.register(name, this.serviceObject);
15
+ this.registry.register(name, this.serviceObject);
16
16
  }
17
17
  }
18
18
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@polylith/core",
3
3
  "access": "public",
4
- "version": "0.1.4",
4
+ "version": "0.1.6",
5
5
  "description": "Core of the client-side polylith framework",
6
6
  "main": "index.js",
7
7
  "scripts": {