Hi guys,
Having a few issues that I could use some help with. I have decided to use meteor + polymer on my next app.
1. Pretty new to Meteor
2. Brand new to Polymer
Deploying Meteor as you likely know is a breeze. Polymer in my experience has been less of a breeze :)
I have tried to go through the current available examples but they're all based on Polymer 0.5.x I am hoping to use the production 1.1 release and I think that's the problem I am having.
I am trying to use Bower as it appears to be the recommended way of setting up Polymer but I'm running in to a few issues.
I have a .bowerrc file in my app folder with the following content:
{"directory":"public/components/"}
From what I understand that's the recommended way of working with meteor and polymer.
The problem arises mainly when I try to install Polymer
bower install --save Polymer/polymer <- no problems, pulls in polymer 1.1 in to /public/components as configured.
problem starts here: bower install --save Polymer/core-elements
-- at this step it finds multiple webcomponentsjs version and makes me chose between different ones as some elements have different versions listed as dependencies
-- it also creates a second folder /public/public/components with the core-* elements in there.
try to run bower install --save Polymer/iron-elements resolves to a non existing repository.
Having had to learn so much in such a short time on both meteor and polymer I'm sure it's just jumbled in my mind. If someone could help out with a couple of clear steps on deploying a sample polymer + meteor app from scratch (with version 1 for production) that would be much appreciated!
Thanks in advance.
Paul