-
Notifications
You must be signed in to change notification settings - Fork 3
Distribute unminified and unprefixed CSS #16
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
elisechant
wants to merge
3
commits into
main
Choose a base branch
from
proposal-unprefixed-css
base: main
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
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| --- | ||
| Status: `Proposal` # Please do not change this. | ||
| Implementer: # It will be changed upon merging and as it moves through the RFC stages | ||
| --- | ||
|
|
||
| # Distribute CSS unminified and unprefixed | ||
|
|
||
| ## The issue to be solved | ||
|
|
||
| CSS is currently being distributed as minified and vendor-prefixed assets. | ||
|
|
||
| This is unnecessary since users (developing apps using npm) process styles for minification and vendor-prefixing, therefore css "as modules" should ship without being processed. This issue was raised by @liamfiddler [here](https://github.com/designsystemau/RFCs/pull/11#discussion_r724769922). | ||
|
|
||
| Where users want to consume full CSS however, they may still expect the asset to be vendor prefixed and minified. This scenario might be handled better by delivering styles from a CDN like [UNPKG](https://unpkg.com/). | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So perhaps we leave both unprefixed and prefixed css files in with dist folder for consumers to choose from? |
||
|
|
||
| This work should ship with pancake being removed [#1](https://github.com/designsystemau/RFCs/pull/1). | ||
|
|
||
| ## A short description of the desired outcome or solution | ||
|
|
||
| - Npm packages should contain unprocessed CSS assets | ||
| - New package "design-system" is created which provides minified + vendor-prefixed CSS **and** an unprocessed version, ie `gold.min.css` and `gold.css` | ||
| - Usage of the new package is documented | ||
|
|
||
| ## Technical details | ||
|
|
||
| Assuming that pancake has been removed. | ||
|
|
||
| 1. Create a new package "design-system", (gold-design-system/packages/design-system) to generate a full CSS | ||
| 2. In the design-system package, minified + vendor-prefixed assets **and** an unprocessed version CSS are published | ||
| 3. Remove minifier and vendor prefix from other packages | ||
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.
Typically files from within the node_modules folders are not processed. That's the reason we publish transpiled babledfied js in our dists for react components. It's backwards and I agree it's not great but that's the norm these days. And one of the issues we have encountered in GOLD was that consumers were unable to use pancake because it included CSS files in their dist folders that were located within node_modules which most users were unable to write CSS loaders for their bundlers for one reason or another.