n8n-node-dev 1.3.1 → 1.5.0
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/README.md +2 -4
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
# n8n-node-dev
|
|
3
|
+
# n8n-node-dev
|
|
4
4
|
|
|
5
5
|
Currently very simple and not very sophisticated CLI which makes it easier
|
|
6
6
|
to create credentials and nodes in TypeScript for n8n.
|
|
@@ -131,14 +131,12 @@ Method is called when the workflow gets executed
|
|
|
131
131
|
- `execute`: Executed once no matter how many items
|
|
132
132
|
|
|
133
133
|
By default, `execute` should always be used, especially when creating a
|
|
134
|
-
third-party integration. The reason for this is that it provides much more
|
|
134
|
+
third-party integration. The reason for this is that it provides much more
|
|
135
135
|
flexibility and allows, for example, returning a different number of items than
|
|
136
136
|
it received as input. This becomes crucial when a node needs to query data such as _return
|
|
137
137
|
all users_. In such cases, the node typically receives only one input item but returns as
|
|
138
138
|
many items as there are users. Therefore, when in doubt, it is recommended to use `execute`!
|
|
139
139
|
|
|
140
|
-
|
|
141
|
-
|
|
142
140
|
**Trigger node**
|
|
143
141
|
|
|
144
142
|
Method is called once when the workflow gets activated. It can then trigger workflow runs and provide the necessary data by itself.
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.
|
|
1
|
+
{"version":"1.5.0","commands":{}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-node-dev",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "CLI to simplify n8n credentials/node development",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://n8n.io",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"inquirer": "^7.0.1",
|
|
47
47
|
"replace-in-file": "^6.0.0",
|
|
48
48
|
"tmp-promise": "^3.0.3",
|
|
49
|
-
"n8n-core": "1.
|
|
50
|
-
"n8n-workflow": "1.
|
|
49
|
+
"n8n-core": "1.5.0",
|
|
50
|
+
"n8n-workflow": "1.5.0"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"clean": "rimraf dist .turbo",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"build": "tsc --noEmit",
|
|
56
56
|
"build-node-dev": "tsc",
|
|
57
57
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
58
|
-
"lint": "eslint . --quiet
|
|
59
|
-
"lintfix": "eslint . --fix
|
|
58
|
+
"lint": "eslint . --quiet",
|
|
59
|
+
"lintfix": "eslint . --fix",
|
|
60
60
|
"watch": "tsc --watch"
|
|
61
61
|
}
|
|
62
62
|
}
|