fix: method refactor error

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2019-07-10 17:28:08 +08:00
parent 87a863a228
commit 812813da8d
21 changed files with 92 additions and 111 deletions

View File

@@ -15,8 +15,11 @@
"author": "MiaoWoo<admin@yumc.pw>",
"license": "MIT",
"scripts": {
"clean": "",
"prebuild": "yarn clean"
"clean": "npx rimraf dist",
"prebuild": "yarn clean",
"watch": "npx tsc --watch",
"build": "npx tsc",
"start": "node dist/run-node.js"
},
"dependencies": {
"bintrees": "^1.0.2",
@@ -29,6 +32,8 @@
},
"devDependencies": {
"@types/node": "^12.6.1",
"rimraf": "^2.6.3",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
}
}