Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add eslint-plugin-tailwind + eslint caches #1876

Merged
merged 10 commits into from
May 19, 2022
Prev Previous commit
Next Next commit
chore: add global cache clean
  • Loading branch information
belgattitude committed May 19, 2022
commit afc48a638aec2ecc0e9810dffabe746cdefe51f1
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"packages/*"
],
"scripts": {
"g:clean": "rimraf '.cache/*' && yarn workspaces foreach -ptv run clean",
"g:clean": "yarn clean:global-cache && yarn workspaces foreach -ptv run clean",
"g:build": "yarn workspaces foreach -p --topological-dev -v run build",
"g:build-changed": "yarn workspaces foreach --topological-dev --no-private -v --since=origin/main run build",
"g:test-unit": "yarn workspaces foreach -ptv run test-unit",
Expand All @@ -43,6 +43,7 @@
"g:release": "yarn g:build && changeset publish",
"g:share-static-symlink": "yarn workspaces foreach -pv --include '*-app' run share-static-symlink",
"g:share-static-hardlink": "yarn workspaces foreach -pv --include '*-app' run share-static-hardlink",
"clean:global-cache": "rimraf --no-glob ./.cache",
"apps:build": "yarn workspaces foreach -ptv --include '*-app' run build",
"apps:clean": "yarn workspaces foreach -ptv --include '*-app' run clean",
"packages:build": "yarn workspaces foreach -ptv --include '@your-org/*' run build",
Expand Down