polymer-css-build
polymer-css-build copied to clipboard
- [x] CHANGELOG.md has been updated
Now that `polymer-css-build` can handle inlined HTML templates, it should also be able to remove comments in those templates, which is no longer handled by a tool like `vulcanize`.
Example JS file (using the syntax from the [Polymer 3 documentation](https://polymer-library.polymer-project.org/3.0/docs/devguide/style-shadow-dom#style-modules)) Contents of `foo.js` ```js const styleElement = document.createElement('dom-module'); styleElement.innerHTML = ` foo { --my-mixin: { color: white; background: blue;...
- [ ] CHANGELOG.md has been updated
I'm running into an issue with using Polymer CSS build with Iron Icon. It looks that CSS Build will remove duplicates of CSS properties that are inside a CSS Mixin....
It appears that when running polymerCssBuild on our project, data:image css declarations seem to get formatted incorrectly. for example... ``` background: url("data:image/svg+xml;base64,PD94bW...."); ``` becomes ``` background: url("data:image/svg+xml;) ```