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.
To help more accurately assess efforts like #37, this PR adds a new private
@rose-lang/site
package that uses Vite to bundle for the browser, so we can see how big that bundle is (both with and without gzip) by looking at Vite's build output:I initially tried just using library mode instead of wrapping it in a webpage, but because of vitejs/vite#4454, that prevents us from seeing the benefits of better asset handling like #39. This is fine anyways though, because we'll want to have a site eventually.
I copied some of the
tsconfig.json
changes from commit cc3560d in #9, then pulled most of it out into a newtsconfig.json
file at the package root that we can share among all our packages.