fix(extollo/extollo#4): add prepare script to package.json and reference modules by git repo
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-03-30 22:15:57 -05:00
parent a4edecee00
commit cab2967cf6
2 changed files with 45 additions and 32 deletions

View File

@@ -8,8 +8,8 @@
"lib": "lib"
},
"dependencies": {
"@extollo/di": "^0.4.4",
"@extollo/util": "^0.3.2",
"@extollo/di": "git+https://code.garrettmills.dev/extollo/di",
"@extollo/util": "git+https://code.garrettmills.dev/extollo/util",
"@types/busboy": "^0.2.3",
"@types/negotiator": "^0.6.1",
"@types/node": "^14.14.37",
@@ -25,7 +25,8 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"app": "tsc && node lib/index.js"
"app": "tsc && node lib/index.js",
"prepare": "pnpm run build"
},
"files": [
"lib/**/*"