@5minds/node-red-contrib-processcube 0.1.0 → 0.2.1
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.
@@ -7,7 +7,7 @@ on:
|
|
7
7
|
- '*/*'
|
8
8
|
|
9
9
|
env:
|
10
|
-
CI_TOOLS_VERSION: '^4.
|
10
|
+
CI_TOOLS_VERSION: '^4.2.0'
|
11
11
|
# NOTE: Um den Releasezyklus von Alpha nach Beta zu ändern, einfach die nachfolgend deklarierten Env Variablen switchen.
|
12
12
|
CI_TOOLS_ALPHA_BRANCH: next
|
13
13
|
CI_TOOLS_ALPHA_NPM_TAG: next
|
@@ -28,10 +28,10 @@ jobs:
|
|
28
28
|
fetch-depth: 0
|
29
29
|
token: ${{ secrets.GH_TOKEN }}
|
30
30
|
|
31
|
-
- name: Use Node.js
|
31
|
+
- name: Use Node.js 20
|
32
32
|
uses: actions/setup-node@v4
|
33
33
|
with:
|
34
|
-
node-version: '
|
34
|
+
node-version: '20'
|
35
35
|
registry-url: 'https://registry.npmjs.org'
|
36
36
|
|
37
37
|
- name: Install CI Tools
|
package/package.json
CHANGED
@@ -1,20 +1,24 @@
|
|
1
1
|
{
|
2
2
|
"name": "@5minds/node-red-contrib-processcube",
|
3
|
-
"version": "0.1
|
3
|
+
"version": "0.2.1",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "Node-RED nodes for ProcessCube",
|
6
|
-
"keywords": [
|
7
|
-
"node-red",
|
8
|
-
"processcube",
|
9
|
-
"workflow",
|
10
|
-
"bpmn",
|
11
|
-
"low-code"
|
12
|
-
],
|
13
6
|
"author": {
|
14
7
|
"name": "5Minds IT-Solutions GmbH & Co. KG",
|
15
8
|
"email": "processcube@5minds.de"
|
16
9
|
},
|
10
|
+
"repository": {
|
11
|
+
"type": "git",
|
12
|
+
"url": "https://github.com/5minds/processcube_nodered"
|
13
|
+
},
|
14
|
+
"bugs": {
|
15
|
+
"url": "https://github.com/5minds/processcube_nodered/issues"
|
16
|
+
},
|
17
|
+
"engines": {
|
18
|
+
"node": ">=20.12.2"
|
19
|
+
},
|
17
20
|
"node-red": {
|
21
|
+
"version": ">=3.1.9",
|
18
22
|
"nodes": {
|
19
23
|
"externaltaskInput": "externaltask-input.js",
|
20
24
|
"externaltaskOutput": "externaltask-output.js",
|
@@ -23,6 +27,13 @@
|
|
23
27
|
}
|
24
28
|
},
|
25
29
|
"dependencies": {
|
26
|
-
"@5minds/processcube_engine_client": "^
|
27
|
-
}
|
30
|
+
"@5minds/processcube_engine_client": "^5.0.0"
|
31
|
+
},
|
32
|
+
"keywords": [
|
33
|
+
"node-red",
|
34
|
+
"processcube",
|
35
|
+
"workflow",
|
36
|
+
"bpmn",
|
37
|
+
"low-code"
|
38
|
+
]
|
28
39
|
}
|