fix: Improve @n8n/node-cli cross-platform compatibility and dev experience (no-changelog) (#19368)

This commit is contained in:
Elias Meire
2025-09-11 08:47:26 +02:00
committed by GitHub
parent 306bdb9a2a
commit e404e55ce5
9 changed files with 120 additions and 75 deletions

View File

@@ -1,16 +1,16 @@
{
"name": "@n8n/create-node",
"version": "0.5.0",
"version": "0.6.0",
"description": "Official CLI to create new community nodes for n8n",
"bin": {
"create-n8n-node": "bin/create.js"
"create-node": "bin/create-node.cjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"start": "node bin/create.js"
"start": "node bin/create-node.cjs"
},
"repository": {
"type": "git",
@@ -18,5 +18,8 @@
},
"dependencies": {
"@n8n/node-cli": "workspace:*"
},
"devDependencies": {
"@n8n/typescript-config": "workspace:*"
}
}