🐛 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", "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"
}, },

View file

@ -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"