Skip to content

Commit

Permalink
fix: script calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Frazer Smith committed Jan 17, 2021
1 parent ed4225e commit 8bea518
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Run Prettier
run: npm run lint:prettier:ci
- name: Compile TypeScript Definition File
run: npm run tsc
run: npm run build

unit-tests:
name: Unit Tests
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@
"node": ">=10.22.0"
},
"scripts": {
"build": "tsc",
"changelog": "conventional-changelog -p @commitlint/config-conventional -s -i CHANGELOG.md && prettier CHANGELOG.md --write",
"doc": "tsc && jsdoc2md src/index.js > API.md && prettier API.md --write",
"dupe-check": "npm run jsinspect ./src",
"dupe-check": "jsinspect ./src",
"jest": "jest --detectOpenHandles --runInBand",
"jest-coverage": "jest --coverage --runInBand",
"lint": "eslint . --cache --ext js,jsx --ignore-path .gitignore",
Expand Down

0 comments on commit 8bea518

Please sign in to comment.