Fix a bunch of small issues with the template (#67)

* Fixup dependencies and some other things

* add dependabot

* Update to separate run steps
This commit is contained in:
Ross Brodbeck
2020-07-20 07:07:15 -04:00
committed by GitHub
parent f15acf4c48
commit d34e81e77f
9 changed files with 4227 additions and 286 deletions

View File

@ -9,9 +9,9 @@
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"package": "ncc build --source-map",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
@ -22,13 +22,13 @@
"node",
"setup"
],
"author": "YourNameOrOrganization",
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/jest": "^24.9.0",
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/ncc": "^0.20.5",