Skip to content

Commit c73be5d

Browse files
committed
🐛 Bugfix - broken publish
1 parent 8c02cb6 commit c73be5d

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,16 @@ In general, we follow the ["fork-and-pull" Git workflow](https://github.com/susa
5151
6. Push changes to your fork
5252
7. Open a PR in our repository and follow the PR template so that we can efficiently review the changes.
5353

54+
## Development
55+
56+
### Husky & Pre-Commit Hooks
57+
58+
You need to set up Husky before you can start developing. This will ensure that your commits are linted and tested before they are pushed to the remote.
59+
60+
```bash
61+
husky install
62+
```
63+
5464
## Publishing
5565

5666
### Build & Packaging

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"analyze:lint": "eslint src/**/*.ts",
1313
"analyze:fmt": "prettier --check .",
1414
"analyze:fix": "prettier --write . && eslint src/**/*.ts --fix",
15-
"package": "node ./scripts/package.js",
16-
"prepare": "husky install"
15+
"package": "node ./scripts/package.js"
1716
},
1817
"repository": {
1918
"type": "git",

0 commit comments

Comments
 (0)