@polylith/core 0.1.8 → 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 +1 -1
- package/package.json +4 -4
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.
|
|
28
|
+
console.warn('method', name, 'not implemented on service', this.serviceName ? this.serviceName : '<unnamed service>')
|
|
29
29
|
}
|
|
30
30
|
}, this);
|
|
31
31
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polylith/core",
|
|
3
3
|
"access": "public",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"description": "Core of the client-side polylith framework",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/Ondoher/polylith",
|
|
10
|
-
"directory": "packages/
|
|
10
|
+
"directory": "packages/core"
|
|
11
11
|
},
|
|
12
|
-
"scripts": {
|
|
12
|
+
"scripts": {
|
|
13
13
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
14
|
},
|
|
15
15
|
"author": "Glenn Anderson",
|
|
@@ -18,4 +18,4 @@
|
|
|
18
18
|
"uuid": "^8.3.2"
|
|
19
19
|
},
|
|
20
20
|
"type": "module"
|
|
21
|
-
}
|
|
21
|
+
}
|