-
Notifications
You must be signed in to change notification settings - Fork 201
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
Adding ignore/remove option #1685
Comments
+100, I think I'm blocked on this :( |
If I am not missing something Polymer/polymer-bundler#89 should fix this. Currently I am using a grunt-string-replace task as a workaround to remove the tags after vulcanization. |
(ported comment from #89) |
Actually, let's flip that. The default should strip the excludes, and a |
Please document! It's a breaking change. On Mon, Nov 3, 2014 at 11:58 AM, Daniel Freedman notifications@github.com
|
'excludes.imports' option excludes the imported files from being vulcanized but it leaves the
<link rel="import href="...">
tag in the html file.In order to implement some sort of component lazy loading (using Polymer.import) I wanted to exclude and remove all the
tags (as well as other already loaded component dependencies) from the vulcanized file which is being lazy loaded. So having a 'remove.imports' option would be very useful to remove the
<link rel="import>
tag when the regex matches.If you agree I can submit a pull request, otherwise any suggestion for better handling this problem would be appreciated.
Thanks
The text was updated successfully, but these errors were encountered: