🐛 Fix bug with build for new cli library

This commit is contained in:
Jan Oberhauser 2019-08-28 18:34:46 +02:00
parent 53b1cf18c8
commit 5d3f4183c4

View file

@ -20,6 +20,8 @@
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"dev": "nodemon", "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": "bin/n8n start",
"test": "jest", "test": "jest",
"tslint": "tslint -p tsconfig.json -c tslint.json", "tslint": "tslint -p tsconfig.json -c tslint.json",
@ -41,7 +43,8 @@
}, },
"files": [ "files": [
"bin", "bin",
"dist" "dist",
"oclif.manifest.json"
], ],
"devDependencies": { "devDependencies": {
"@types/basic-auth": "^1.1.2", "@types/basic-auth": "^1.1.2",