-
Notifications
You must be signed in to change notification settings - Fork 256
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
babel({ presets: ['es2015']})) breaks google-map #353
Comments
I have to do further testing, but it might be that this is a Vulcanize issue and might be fine with polymer-build 0.8.0. |
Found the issue. Line 557 of google-map.html: markers is a readOnly property and thus has no setter. For some reason Polymer 1.0 without ES6 babel compiling has no issue with it. After running Polymer through babel though, this is an error. It should be an error regardless. What does work is changing the line to : |
…s = VALUE results in a setter error. _setMarkers(VALUE) is enough. Fixes issue GoogleWebComponents#353
Fixed with PR #354 Until it's merged, if someone else runs across the same issue, I'll keep this branch updated with master: |
I am using the Polymer framework, and specifically the polymer-build toolchain.
bower.json entry is:
We are using these npm versions to compile from ES6
In the gulp process, I have this:
All works, but the babel compiling down will result with the following error:
The text was updated successfully, but these errors were encountered: