<!-- If you are asking a question rather than filing a bug, you'll get better results using one of these instead: - Stack Overflow (http://stackoverflow.com/questions/tagged/polymer-cli) - Polymer Slack Channel (https://bit.ly/polymerslack) - Mailing List (https://groups.google.com/forum/#!forum/polymer-dev) --> <!-- Instructions For Filing a Bug: https://github.com/Polymer/polymer/blob/master/CONTRIBUTING.md#filing-bugs --> ### Description After installing polymer-cli v1.0.0 with `npm -g install polymer-cli`, npm reports dependency issues with test-fixture. <!-- Example: Build failure when loading scripts from CDNs --> ### Versions & Environment <!-- `polymer --version` will show the version for Polymer CLI `node --version` will show the version for node --> - Polymer CLI: v1.0.0 - node: v6.10.3 - Operating System: Ubuntu 14.04 (4.4.0-78-generic #99~14.04.2-Ubuntu SMP) #### Steps to Reproduce 1. `npm -g install polymer-cli` 2. `npm -g list --depth=0` <!-- Example: 1. Create an application project: `polymer init application` 2. Add script tag to index.html: `<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>` 3. Build: `polymer build` --> #### Expected Results I would expect something like this: ``` /usr/lib ├── bower@1.8.0 ├── npm@4.6.1 └── polymer-cli@1.0.0 ``` <!-- Example: No error is throw --> #### Actual Results Instead, I see this: ``` /usr/lib ├── bower@1.8.0 ├── npm@4.6.1 └── polymer-cli@1.0.0 npm ERR! extraneous: test-fixture@3.0.0-rc.1 /usr/lib/node_modules/polymer-cli/node_modules/test-fixture npm ERR! missing: test-fixture@github:PolymerElements/test-fixture, required by web-component-tester@6.0.0 ``` <!-- Example: Error is thrown -->
Description
After installing polymer-cli v1.0.0 with
npm -g install polymer-cli, npm reports dependency issues with test-fixture.Versions & Environment
Steps to Reproduce
npm -g install polymer-clinpm -g list --depth=0Expected Results
I would expect something like this:
Actual Results
Instead, I see this: