Skip to content

Commit

Permalink
Update package scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ncalteen committed Nov 1, 2023
1 parent 3a4c22f commit 2d32a4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "releaser",
"description": "Handle releases for GitHub repositories",
"version": "0.1.2",
"version": "0.1.3",
"author": "Nick Alteen <[email protected]>",
"homepage": "https://github.com/issue-ops/releaser#readme",
"repository": {
Expand All @@ -25,13 +25,14 @@
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "jest",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "(jest && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg",
"all": "npm run format:write && npm run lint && npm run test && npm run package"
"test": "jest",
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
},
"license": "MIT",
"jest": {
Expand Down

0 comments on commit 2d32a4d

Please sign in to comment.