mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Fix "npm run start" command
This commit is contained in:
parent
d8eaeab85c
commit
cc9a577470
|
@ -5,7 +5,7 @@
|
||||||
"bootstrap": "lerna bootstrap --hoist --no-ci",
|
"bootstrap": "lerna bootstrap --hoist --no-ci",
|
||||||
"build": "lerna exec npm run build",
|
"build": "lerna exec npm run build",
|
||||||
"dev": "lerna exec npm run dev --parallel",
|
"dev": "lerna exec npm run dev --parallel",
|
||||||
"start": "cd packages/cli && node dist/index.js start",
|
"start": "cd packages/cli && bin/n8n",
|
||||||
"test": "lerna run test",
|
"test": "lerna run test",
|
||||||
"watch": "lerna run --parallel watch"
|
"watch": "lerna run --parallel watch"
|
||||||
},
|
},
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"dev": "nodemon",
|
"dev": "nodemon",
|
||||||
"start": "node dist/index.js start",
|
"start": "bin/n8n start",
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"tslint": "tslint -p tsconfig.json -c tslint.json",
|
"tslint": "tslint -p tsconfig.json -c tslint.json",
|
||||||
"watch": "tsc --watch"
|
"watch": "tsc --watch"
|
||||||
|
|
Loading…
Reference in a new issue