Core Debug Workbench web components that were meant to be shared by the various integrations. However, development focus has now switched to a standalone Electron-based application, and there are no longer any plans for any integration with the Atom or VSCode editors.
- NPM
- Grunt
- Bower
- Install all Bower dependencies by executing
bower install
. - Install all Node dependencies by executing
npm install
. - Vulcanize the Polymer web components by executing
grunt
, this will createdependencies_bundle.html
anddependencies_bundle.js
.
Note that there's a bug related to the abspath
option in Vulcanize 1.10.3
that causes
relative URLs to be output with a /
prefix, this breaks things when loading the dependencies
bundle in Atom. This bug was fixed in the
master branch
shortly after Vulcanize 1.10.3
was released, but there hasn't been a new release with the bug
fix yet so until then you'll need to replace the version installed by NPM with the one on GitHub.
To do so navigate to the node_modules/grunt-vulcanize
directory and execute
npm install Polymer/vulcanize
.
- Execute
bower update
to download updated Polymer web components. - Execute
grunt vulcanize
to updatedependencies_bundle.html
anddependencies_bundle.js
.