n8n-node-dev 1.5.0 → 1.6.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
@@ -114,7 +114,7 @@ export class MyNode implements INodeType {
114
114
  item.json['myString'] = myString;
115
115
  }
116
116
 
117
- return this.prepareOutputData(items);
117
+ return [items];
118
118
 
119
119
  }
120
120
  }
@@ -1 +1 @@
1
- {"version":"1.5.0","commands":{}}
1
+ {"version":"1.6.0","commands":{}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-node-dev",
3
- "version": "1.5.0",
3
+ "version": "1.6.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.5.0",
50
- "n8n-workflow": "1.5.0"
49
+ "n8n-core": "1.6.0",
50
+ "n8n-workflow": "1.6.0"
51
51
  },
52
52
  "scripts": {
53
53
  "clean": "rimraf dist .turbo",
@@ -48,6 +48,6 @@ export class ClassNameReplace implements INodeType {
48
48
  item.json.myString = myString;
49
49
  }
50
50
 
51
- return this.prepareOutputData(items);
51
+ return [items];
52
52
  }
53
53
  }