Skip to content
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

Fix minification issues #39

Merged
merged 4 commits into from
Mar 27, 2019
Merged

Fix minification issues #39

merged 4 commits into from
Mar 27, 2019

Conversation

Igorbek
Copy link
Owner

@Igorbek Igorbek commented Mar 27, 2019

This PR fixes #36

Example:

styled.div`
  border: ${'solid'} 2px;
`

Minified before:

styled.div`border:${'solid'}2px;` // would result in 'border:solid2px'

Minified after:

styled.div`border:${'solid'} 2px;` // would result in 'border:solid 2px'

Particularly these two commits show the diff:

@Igorbek Igorbek merged commit 7b12b45 into master Mar 27, 2019
@Igorbek Igorbek deleted the bugfix/issue36 branch March 27, 2019 05:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

minify option breaks styles
1 participant