1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-11 13:15:28 +03:00

🐛 Fix "npm run start" command

This commit is contained in:
Jan Oberhauser 2019-08-28 17:39:10 +02:00
parent d8eaeab85c
commit cc9a577470
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"bootstrap": "lerna bootstrap --hoist --no-ci",
"build": "lerna exec npm run build",
"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",
"watch": "lerna run --parallel watch"
},

View File

@ -20,7 +20,7 @@
"scripts": {
"build": "tsc",
"dev": "nodemon",
"start": "node dist/index.js start",
"start": "bin/n8n start",
"test": "jest",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"watch": "tsc --watch"