-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: Icon builder to library #8203
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
Merged
Merged
Changes from all commits
Commits
Show all changes
66 commits
Select commit
Hold shift + click to select a range
eb2367f
icon library builder
snowystinger e3197a6
save
snowystinger f39c8f4
cleanup
snowystinger f66c302
remove dep
snowystinger fb79303
fix some versions
snowystinger d0c6805
add back private
snowystinger a974371
fix yarn lock
snowystinger eb07253
fix lint
snowystinger c3cda55
update deps
snowystinger d878af2
fix yarn constraints
snowystinger 4405518
add missing dep
snowystinger 059fbab
fix lint yet again
snowystinger b5a6263
fix executable
snowystinger 165ec9c
fix yarn lock
snowystinger 5498369
Add dependencies
snowystinger d5cd442
bump down glob
snowystinger c833bb5
add swc helpers
snowystinger 2376198
try again
snowystinger 935691d
remove non-dependency
snowystinger 40ece33
move some more things around
snowystinger 7a9e62f
Merge branch 'main' into icons
snowystinger 809fc42
Add swc/helpers to
snowystinger ec9fdf9
remove ts as a dependency
snowystinger 0909fb7
make test more realistic to use case
snowystinger 676fe82
fix sub yarn project
snowystinger fb15755
fix install
snowystinger 34ae776
publish namer plugin
snowystinger 6b2aca7
fix builder
snowystinger ff79bfe
add swc helpers
snowystinger 86c431f
fix test
snowystinger 4d359dd
fix swc/helpers
snowystinger 56e33aa
remove namer?
snowystinger 5675fb8
write to root and see if removing exports field fixes duplicates
snowystinger 2d0cd4c
remove default as maybe duplicate causing
snowystinger 28fd7ab
debug output
snowystinger cc1608d
try updating the namer
snowystinger 1def4d4
generate ts files
snowystinger e0d1c11
fix timing of async function
snowystinger 0b42921
add another icon
snowystinger 22fd984
Merge branch 'main' into icons
snowystinger db3b804
hopefully fix source maps for library
snowystinger cc0b9a1
attempt to get rid of esmodule helper
snowystinger 0b06754
remove console logs and dead code
snowystinger fd8932b
Add real application to test icon builder
snowystinger 65f81ac
use correct path
snowystinger 9d4930e
Make sure app builds without icon
snowystinger 946b414
Add icon back in
snowystinger c549352
we use bundler-library, so use it here too
snowystinger fecc412
try more configs to mimic our own setup
snowystinger 1f59b63
add browsers list
snowystinger 92ac4e5
add mode production
snowystinger f3c2a03
fix hoisting
snowystinger 9377246
update dependencies
snowystinger efe0a83
fix browsers list
snowystinger ee66ef5
remove dead code
snowystinger a9bb8ea
fix version number
snowystinger 605cfef
turn off verdaccio
snowystinger 19f2fbd
Merge branch 'main' into icons
snowystinger 044cef7
review updates
snowystinger 801d9d2
Revert "turn off verdaccio"
snowystinger 224c073
Reapply "turn off verdaccio"
snowystinger 017f278
Merge branch 'main' into icons
snowystinger d9421ef
fix logic
snowystinger ece0dc4
Revert "turn off verdaccio"
snowystinger 10c78e3
actually fix logic
snowystinger ece7188
Reapply "turn off verdaccio"
snowystinger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "extends": "@parcel/config-default", | ||
| "namers": ["@react-spectrum/parcel-namer-s2", "@parcel/namer-default"], | ||
| "bundler": "@parcel/bundler-library", | ||
| "transformers": { | ||
| "*.svg": ["@react-spectrum/parcel-transformer-s2-icon"], | ||
| "*.{js,mjs,jsm,jsx,es6,cjs,ts,tsx}": [ | ||
| "@parcel/transformer-js", | ||
| "@parcel/transformer-react-refresh-wrap" | ||
| ] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| .DS_Store | ||
| node_modules | ||
| package-lock.json |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we wind up with duplicates for some reason, it's the weirdest thing, even though 2.14 fulfills ^2.13.1... yarn decides it should be 2.15.1. So I locked down the ones I found to be getting strange duplicates