I'm facing the an issue, the polymer init
halted on
Running generator polymer-init-polymer-3-element:app...
same on win7 and MINGW64_NT-6.1, with polymer --version = 1.8.0, nodejs --version = v10.3.0
I'm facing the an issue, the polymer init
halted on
Running generator polymer-init-polymer-3-element:app...
same on win7 and MINGW64_NT-6.1, with polymer --version = 1.8.0, nodejs --version = v10.3.0
it seems an issue causing by yield prompt
here's my temporary solution - edit the source code of polymer-cli to make my choices:
update
const generatorName = yield util_1.prompt(createSelectPrompt(env));
with your selection
createSelectPrompt(env);
const generatorName = 'polymer-init-polymer-3-element:app';
update
this.props = (yield this.prompt(prompts));
with
this.props = {name: 'my-element', 'description': 'MyElement Demo for Polymer 3.0'};