Reputation: 2783
If I run polymer init
it's only possible to select templates of polymer 2.0.
Is it possible to select templates of polymer 1.0 too? If it's possible, how can I do this?
Upvotes: 0
Views: 394
Reputation: 80
Your polymer-cli
is too new. First downgrade it to the last version that supports Polymer 1.0 templates, which is 1.1.0
.
npm install -g [email protected]
Then try running the CLI again and you should see polymer 1.0 templates.
polymer init
Upvotes: 5