mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
⚡ Rename n8n-node-dev cli command file
This commit is contained in:
parent
88e70e9f91
commit
01a873edbd
|
@ -2,4 +2,4 @@
|
||||||
|
|
||||||
require('@oclif/command').run()
|
require('@oclif/command').run()
|
||||||
.then(require('@oclif/command/flush'))
|
.then(require('@oclif/command/flush'))
|
||||||
.catch(require('@oclif/errors/handle'))
|
.catch(require('@oclif/errors/handle'));
|
3
packages/node-dev/bin/n8n-node-dev.cmd
Executable file
3
packages/node-dev/bin/n8n-node-dev.cmd
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
node "%~dp0\n8n-node-dev" %*
|
|
@ -1,3 +0,0 @@
|
||||||
@echo off
|
|
||||||
|
|
||||||
node "%~dp0\run" %*
|
|
|
@ -15,7 +15,7 @@
|
||||||
"types": "dist/src/index.d.ts",
|
"types": "dist/src/index.d.ts",
|
||||||
"oclif": {
|
"oclif": {
|
||||||
"commands": "./dist/commands",
|
"commands": "./dist/commands",
|
||||||
"bin": "run"
|
"bin": "n8n-node-dev"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "npm run watch",
|
"dev": "npm run watch",
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
"watch": "tsc --watch"
|
"watch": "tsc --watch"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"n8n-node-dev": "./bin/run"
|
"n8n-node-dev": "./bin/n8n-node-dev"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"development",
|
"development",
|
||||||
|
|
Loading…
Reference in a new issue