'npm run dev' / 'npm run start' OS fix for CLI

This commit is contained in:
Yoni Feigelson 2019-10-14 22:07:17 +03:00
parent aa1caa4188
commit 76607d70a6

View file

@ -23,7 +23,9 @@
"dev": "nodemon",
"postpack": "rm -f oclif.manifest.json",
"prepack": "echo \"Building project...\" && rm -rf dist && tsc -b && oclif-dev manifest",
"start": "bin/n8n start",
"start": "run-script-os",
"start:default": "cd bin && ./n8n",
"start:windows": "cd bin && n8n",
"test": "jest",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"watch": "tsc --watch"
@ -63,6 +65,7 @@
"@types/request-promise-native": "^1.0.15",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"run-script-os": "^1.0.7",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "~3.5.2"