Skip to content

Commit 9883fdb

Browse files
authored
eslint and makefile improvements around react-aria-components/dist (#4696)
* eslint ignores react-aria-components/dist and adding makefile clean_dist * fix name
1 parent 7238093 commit 9883fdb

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ packages/@spectrum-icons/express/**
66
node_modules
77
packages/*/*/dist
88
packages/react-aria/dist
9+
packages/react-aria-components/dist
910
packages/react-stately/dist
1011
packages/dev/storybook-builder-parcel/preview.js
1112
examples/**

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,16 @@ clean:
1919
clean_all:
2020
$(MAKE) clean
2121
$(MAKE) clean_node_modules
22+
$(MAKE) clean_dist
2223

2324
clean_node_modules:
2425
rm -rf node_modules
2526
rm -rf packages/*/*/node_modules
27+
rm -rf examples/*/node_modules
28+
29+
clean_dist:
30+
rm -rf packages/*/*/dist
31+
rm -rf packages/{react-aria,react-aria-components,react-stately}/dist
2632

2733
packages/@spectrum-icons/workflow/src: packages/@spectrum-icons/workflow/package.json
2834
yarn workspace @spectrum-icons/workflow make-icons

0 commit comments

Comments
 (0)