🐛 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": { "scripts": {
"dev": "npm run watch", "dev": "npm run watch",
"build": "tsc", "build": "tsc",
"postpack": "rm -f oclif.manifest.json",
"prepack": "echo \"Building project...\" && rm -rf dist && tsc -b && oclif-dev manifest",
"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"
@ -35,9 +37,11 @@
], ],
"files": [ "files": [
"bin", "bin",
"dist" "dist",
"oclif.manifest.json"
], ],
"devDependencies": { "devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/inquirer": "^6.5.0", "@types/inquirer": "^6.5.0",
"@types/node": "^10.10.1", "@types/node": "^10.10.1",
"@types/vorpal": "^1.11.0", "@types/vorpal": "^1.11.0",