mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
🐛 Fix bug with build for new cli library with node-dev
This commit is contained in:
parent
b5330e8f37
commit
fcafda2510
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue