@builder6/node-red 0.6.1 → 0.6.3
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/package.json +4 -3
- package/package.service.js +48 -0
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder6/node-red",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"main": "dist/plugin.module.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
7
|
-
"dist"
|
|
7
|
+
"dist",
|
|
8
|
+
"package.service.js"
|
|
8
9
|
],
|
|
9
10
|
"scripts": {
|
|
10
11
|
"build": "rm -rf dist && tsc",
|
|
@@ -16,5 +17,5 @@
|
|
|
16
17
|
"publishConfig": {
|
|
17
18
|
"access": "public"
|
|
18
19
|
},
|
|
19
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "95072e46086936653f20eafe111f229d4f751c84"
|
|
20
21
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
const project = require('./package.json');
|
|
2
|
+
|
|
3
|
+
const packageName = project.name;
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
name: packageName,
|
|
7
|
+
namespace: 'steedos',
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Settings
|
|
11
|
+
*/
|
|
12
|
+
settings: {},
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Dependencies
|
|
16
|
+
*/
|
|
17
|
+
dependencies: [],
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Actions
|
|
21
|
+
*/
|
|
22
|
+
actions: {},
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Events
|
|
26
|
+
*/
|
|
27
|
+
events: {},
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Methods
|
|
31
|
+
*/
|
|
32
|
+
methods: {},
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Service created lifecycle event handler
|
|
36
|
+
*/
|
|
37
|
+
async created() {},
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Service started lifecycle event handler
|
|
41
|
+
*/
|
|
42
|
+
async started() {},
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Service stopped lifecycle event handler
|
|
46
|
+
*/
|
|
47
|
+
async stopped() {},
|
|
48
|
+
};
|