-
Notifications
You must be signed in to change notification settings - Fork 33
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
feat(packages/sui-bundler): add flag for creating libs with css chunks #1738
Open
NietoGX
wants to merge
666
commits into
master
Choose a base branch
from
feat/use-chunks-in-umd-css
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.
Conversation
This file contains 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
NietoGX
requested review from
sui-bot,
kikoruiz,
andresz1 and
carlosvillu
as code owners
March 14, 2024 15:28
…age on async functions
…nline-error-decorator-message feat(packages/eslint-plugin-sui): rephrase message for inlineErrorMissplace rule
…unctions and closest to the met
… Promise.allSettled and Promise
feat(packages/sui-polyfills): Added polyfills
Bumps [@pactflow/pact-msw-adapter](https://github.com/pactflow/pact-msw-adapter) from 2.0.0 to 2.0.1. - [Release notes](https://github.com/pactflow/pact-msw-adapter/releases) - [Changelog](https://github.com/pactflow/pact-msw-adapter/blob/main/CHANGELOG.md) - [Commits](pactflow/pact-msw-adapter@v2.0.0...v2.0.1) --- updated-dependencies: - dependency-name: "@pactflow/pact-msw-adapter" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
…thod runs on classes
…ning on Classes, Methods and Ar
feat(packages/sui-performance): add performance package
feat(packages/sui-pde): avoid sending impression when consents are not accepted
feat(packages/lint-repository-sui): Add jest adoption rule to lint
feat(packages/sui-lint): Add jest adoption rule to @s-ui/lint repository config
refactor(packages/sui-logger): add missed Trackers in client and server level
feat(packages/sui-decorators): remove console.log
feat(packages/sui-bundler): add tailwind support
…maps feat(packages/sui-bundler): add experimental spritemaps
docs(packages/sui-pde): fix typo
…s/sui into feat/use-chunks-in-umd-css
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
This PR adds an option to the sui-bundler build lib for generating CSS chunks.
By default the code will not use chunks for the css. With the option
--chunk-css
will use the css with chunks.Example
sui-bundler lib umd/index.js -o umd/ --root --chunk-css
will generate a chunk for each css file.For example, if we want to select a different scss file from the js with code like:
The sui-bundler will generate the next files: