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

🐛 Fix bug with build for new cli library with node-dev

This commit is contained in:
Jan Oberhauser 2019-08-28 19:08:24 +02:00
parent b5330e8f37
commit fcafda2510

View File

@ -20,6 +20,8 @@
"scripts": {
"dev": "npm run watch",
"build": "tsc",
"postpack": "rm -f oclif.manifest.json",
"prepack": "echo \"Building project...\" && rm -rf dist && tsc -b && oclif-dev manifest",
"test": "jest",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"watch": "tsc --watch"
@ -35,9 +37,11 @@
],
"files": [
"bin",
"dist"
"dist",
"oclif.manifest.json"
],
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/inquirer": "^6.5.0",
"@types/node": "^10.10.1",
"@types/vorpal": "^1.11.0",