Installed pkg as dev module for building a binary on the pi (maybe). Added build scripts for automatically handling versioning on new commits.
This commit is contained in:
parent
8986014a82
commit
d04b0a1d09
File diff suppressed because it is too large
Load Diff
|
@ -6,7 +6,12 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "./node_modules/.bin/qunit",
|
"test": "./node_modules/.bin/qunit",
|
||||||
"docs": "sh docs.sh",
|
"docs": "sh docs.sh",
|
||||||
"compile": "./node_modules/.bin/tsc -p tsconfig.json"
|
"compile": "./node_modules/.bin/tsc -p tsconfig.json",
|
||||||
|
"pretest": "",
|
||||||
|
"version": "",
|
||||||
|
"postversion": "git push && git push --tags",
|
||||||
|
"u": "npm run git -- -m \"update\"",
|
||||||
|
"git": "npm version patch --force"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -43,6 +48,7 @@
|
||||||
"@types/node-persist": "0.0.33",
|
"@types/node-persist": "0.0.33",
|
||||||
"@types/uuid": "^3.4.5",
|
"@types/uuid": "^3.4.5",
|
||||||
"jsdoc-to-markdown": "^5.0.2",
|
"jsdoc-to-markdown": "^5.0.2",
|
||||||
|
"pkg": "^4.4.0",
|
||||||
"qunit": "^2.9.3",
|
"qunit": "^2.9.3",
|
||||||
"typescript": "^3.6.4"
|
"typescript": "^3.6.4"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue