Skip to content

Commit 60e4e39

Browse files
committed
fix: build project before publishing
1 parent f85fb6c commit 60e4e39

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
token: "${{secrets.GITHUB_TOKEN}}"
3737
- run: yarn test
3838
- run: yarn lint
39-
- run: yarn build
4039
deploy:
4140
name: Deploy
4241
runs-on: ubuntu-latest

.idea/runConfigurations/All_Tests.xml

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
"repository": "github:softwareventures/precise-commits",
1212
"license": "MIT",
1313
"scripts": {
14-
"build": "rimraf lib/ && tsc",
1514
"precise-commits": "node bin/index.js",
1615
"precommit": "yarn precise-commits",
16+
"prepare": "rimraf lib && tsc",
1717
"cz": "git-cz",
1818
"fix": "tsc --noEmit && prettier --write .",
1919
"lint": "tsc --noEmit && prettier --check .",
2020
"semantic-release": "semantic-release",
21-
"test": "yarn build && jest"
21+
"test": "yarn && jest"
2222
},
2323
"main": "lib/index.js",
2424
"bin": "bin/index.js",

0 commit comments

Comments
 (0)