@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 +1 -1
- package/ServiceObject.js +0 -4
- package/package.json +7 -2
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/ServiceObject.js
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
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
|
+
"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
|
+
}
|