Skip to content

Commit

Permalink
chore: add .jestcache to clean script
Browse files Browse the repository at this point in the history
  • Loading branch information
sungik-choi committed Sep 11, 2023
1 parent fb5f62c commit 93d6912
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/bezier-codemod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"lint": "TIMING=1 eslint --cache .",
"typecheck": "tsc --noEmit",
"test": "jest",
"clean": "rm -rf dist node_modules .turbo .eslintcache"
"clean": "rm -rf dist node_modules .turbo .eslintcache .jestcache"
},
"files": [
"dist"
Expand Down
2 changes: 1 addition & 1 deletion packages/bezier-figma-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"lint:style": "stylelint --allow-empty-input --cache '**/*.styled.{js,ts}'",
"clean": "run-s 'clean:*'",
"clean:build": "rm -rf dist",
"clean:cache": "rm -rf node_modules .turbo .eslintcache"
"clean:cache": "rm -rf node_modules .turbo .eslintcache .jestcache"
},
"author": "Channel Corp.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/bezier-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"update-snapshot": "jest --updateSnapshot",
"clean": "run-s 'clean:*'",
"clean:build": "rm -rf dist",
"clean:cache": "rm -rf node_modules .turbo .eslintcache .stylelintcache tsconfig.tsbuildinfo coverage",
"clean:cache": "rm -rf node_modules .turbo .eslintcache .stylelintcache tsconfig.tsbuildinfo coverage .jestcache",
"prebuild": "yarn clean:build",
"storybook": "start-storybook -p 4101",
"build-storybook": "build-storybook",
Expand Down

0 comments on commit 93d6912

Please sign in to comment.