I'm using polymer-cli 1.5.7 on different projects. In some projects, the extraDependencies
"client/bower_components/webcomponentsjs/*.js"
copies all 8 JS files into build/es5-bundled
, build/es6-bundled
, and build/es6-unbundled
. In another very similar project (both modeled on the Shop app), with the same extraDependencies
in polymer.json
, not all JS files are copied into build/es5-bundled
and build/es6-bundled
. Both are missing webcomponents-loader.js
and build/es5-bundled
is also missing custom-elements-es5-adapter.js
. All 8 JS files are in build/es6-unbundled
.
Naturally the project won't run without webcomponents-loader.js
, which I must copy in by hand.
What could be wrong with my setup or the CLI?