Skip to content

Commit

Permalink
feat: add clean script (#87)
Browse files Browse the repository at this point in the history
## Context

Add clean script to remove all temporary files and node_modules

## Changes

- Installed `rimraf` for removing files
- Add clean script to package.json

## Checklist

- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
- [x] I have made corresponding changes to the documentation
- [x] I have tested my code for breaking changes and added the
corresponding footer in this PR if needed
- [x] I have added tests that prove my fix is effective or that my
feature works
  • Loading branch information
remcolakens authored Apr 21, 2024
1 parent 7f9fc18 commit 3a4fcc5
Show file tree
Hide file tree
Showing 2 changed files with 878 additions and 957 deletions.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"scripts": {
"build": "next build",
"commit": "git add . && cz",
"clean": "rimraf node_modules .next .swc e2e/{report,test-results}",
"dev": "next dev",
"format": "prettier --write .",
"generate:svg": "pnpm svgr ./app/svgs/src",
Expand Down Expand Up @@ -59,6 +60,7 @@
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.8",
"shadcn-ui": "^0.8.0",
"tailwindcss": "^3.4.3",
Expand Down
Loading

0 comments on commit 3a4fcc5

Please sign in to comment.