n8n-node-dev 1.3.1 → 1.4.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  ![n8n.io - Workflow Automation](https://user-images.githubusercontent.com/65276001/173571060-9f2f6d7b-bac0-43b6-bdb2-001da9694058.png)
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.
@@ -1 +1 @@
1
- {"version":"1.3.1","commands":{}}
1
+ {"version":"1.4.0","commands":{}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-node-dev",
3
- "version": "1.3.1",
3
+ "version": "1.4.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.3.1",
50
- "n8n-workflow": "1.3.0"
49
+ "n8n-core": "1.4.0",
50
+ "n8n-workflow": "1.4.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 --report-unused-disable-directives",
59
- "lintfix": "eslint . --fix --report-unused-disable-directives",
58
+ "lint": "eslint . --quiet",
59
+ "lintfix": "eslint . --fix",
60
60
  "watch": "tsc --watch"
61
61
  }
62
62
  }