Skip to content

Commit

Permalink
chore: update husky and readme files
Browse files Browse the repository at this point in the history
  • Loading branch information
yousifalraheem committed Nov 2, 2024
1 parent 0021377 commit c4e64da
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#!/bin/bash

npx --no-install commitlint --edit "$1"
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash

npx eslint --fix . &&
npm run lint &&
echo "✅ eslint finished successfully" &&
npx prettier --write --ignore-unknown . &&
npx prettier --check . &&
echo "✅ Prettier finished successfully"
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
[![Release](https://github.com/yousifalraheem/rollup-plugin-summary/actions/workflows/release.yml/badge.svg)](https://github.com/yousifalraheem/rollup-plugin-summary/actions/workflows/release.yml)

# rollup-plugin-summary

A rollup plugin that summarizes the output of the build.

<img src="docs/assets/sample_output.png" alt="Sample output" />
Expand All @@ -27,6 +28,12 @@ npm i -D rollup-plugin-summary
yarn add -D rollup-plugin-summary
```

### pnpm

```terminal
pnpm add -D rollup-plugin-summary
```

<hr/>

## Usage
Expand Down

0 comments on commit c4e64da

Please sign in to comment.