n8n-node-dev 0.36.0 → 0.40.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 +0 -1
- package/oclif.manifest.json +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -224,7 +224,6 @@ All properties are optional. However, most only work when the node-property is o
|
|
|
224
224
|
- **multipleValues** [type: all]: If set the property gets turned into an Array and the user can add multiple values
|
|
225
225
|
- **multipleValueButtonText** [type: all]: Custom text for add button in case "multipleValues" got set
|
|
226
226
|
- **numberPrecision** [type: number]: The precision of the number. By default it is "0" and will so only allow integers.
|
|
227
|
-
- **numberStepSize** [type: number]: If step size in the UI if "numberPrecision" got set
|
|
228
227
|
- **password** [type: string]: If a password field should be displayed (normally only used by credentials because all node data is not encrypted and get saved in clear-text)
|
|
229
228
|
- **rows** [type: string]: Number of rows the input field should have. By default it is "1"
|
|
230
229
|
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"0.
|
|
1
|
+
{"version":"0.40.0","commands":{"build":{"id":"build","description":"Builds credentials and nodes and copies it to n8n custom extension folder","pluginName":"n8n-node-dev","pluginType":"core","aliases":[],"examples":["$ n8n-node-dev build","$ n8n-node-dev build --destination ~/n8n-nodes","$ n8n-node-dev build --watch"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false},"destination":{"name":"destination","type":"option","char":"d","description":"The path to copy the compiles files to [default: /root/.n8n/custom]"},"watch":{"name":"watch","type":"boolean","description":"Starts in watch mode and automatically builds and copies file whenever they change","allowNo":false}},"args":[]},"new":{"id":"new","description":"Create new credentials/node","pluginName":"n8n-node-dev","pluginType":"core","aliases":[],"examples":["$ n8n-node-dev new"],"flags":{},"args":[]}}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-node-dev",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.40.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",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"dev": "npm run watch",
|
|
23
|
-
"build": "
|
|
23
|
+
"build": "",
|
|
24
|
+
"build-node-dev": "tsc",
|
|
24
25
|
"format": "cd ../.. && node_modules/prettier/bin-prettier.js packages/node-dev/**/**.ts --write",
|
|
25
26
|
"lint": "cd ../.. && node_modules/eslint/bin/eslint.js packages/node-dev",
|
|
26
27
|
"lintfix": "cd ../.. && node_modules/eslint/bin/eslint.js packages/node-dev --fix",
|
|
@@ -60,8 +61,8 @@
|
|
|
60
61
|
"change-case": "^4.1.1",
|
|
61
62
|
"copyfiles": "^2.1.1",
|
|
62
63
|
"inquirer": "^7.0.1",
|
|
63
|
-
"n8n-core": "~0.
|
|
64
|
-
"n8n-workflow": "~0.
|
|
64
|
+
"n8n-core": "~0.101.0",
|
|
65
|
+
"n8n-workflow": "~0.83.0",
|
|
65
66
|
"oauth-1.0a": "^2.2.6",
|
|
66
67
|
"replace-in-file": "^6.0.0",
|
|
67
68
|
"request": "^2.88.2",
|