-
Notifications
You must be signed in to change notification settings - Fork 187
Prebundle src #476
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
Open
mihkeleidast
wants to merge
19
commits into
seek-oss:master
Choose a base branch
from
mihkeleidast:prebundle-src
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Prebundle src #476
Changes from 7 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
0489c9f
Prebundle src
mihkeleidast ef40c8c
build src with vite
mihkeleidast 5bf2023
remove vite-plugin-lib-assets
mihkeleidast 5261afe
add changeset
mihkeleidast fb7f867
tsdown bundle
mihkeleidast c4db00d
ensure components import is after parse-prop-types import
mihkeleidast e824cd9
refactor to an additional side effect import
mihkeleidast c8cbd66
move types to devdeps
mihkeleidast 2e87cf9
use separate top-level app directory for output
mihkeleidast e87fe12
copy template.html over to app dist
mihkeleidast acb5999
remove babel/preset-typescript from babelrc
mihkeleidast 6b314cf
ignore app dir
mihkeleidast 1259abc
revert babelrc change
mihkeleidast 742a945
no need for types in app
mihkeleidast 92d7ddc
use one tsdown config file with multiple configurations
mihkeleidast 637c673
move back to dist, split utils into its own dir
mihkeleidast 5193fa9
remove babelrc and utils from dist files
mihkeleidast b2ae33f
fix include path
mihkeleidast da661f2
move typescript back to deps as it's used by getStaticTypes
mihkeleidast 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
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| 'playroom': minor | ||
| --- | ||
|
|
||
| Improve user-side performance and install size by prebundling source |
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
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.
@michaeltaranto I'd appreciate if you could take a hard look at the dependencies, if what I moved to devDeps makes sense, and if anything else could potentially be moved. A bit hard for me to judge, as I don't know what has been added and why.
Also the webpack config and loaders, which I trimmed down - maybe something can be simplified further there as well.
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.
I dont recall why we have a requirement for
@babel/core(unless its a peer dep of something we use).The
@babel/preset-reactpackage is part of the default webpack config we provide for consumers, so we should add that back in.Can all the
@types/*packages be moved to devdeps now?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.
@babel/coreis indeed a peerDep requirement for all other babel packagesThere 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.
I hadn't moved
@babel/preset-react, so that should be good already.Types can indeed move to devDeps, will do so.