Polymer Starter Kit 1.1.1
This is a patch release intended to improve the Polymer Starter Kit build process further 🔧
Highlights ⚡
- Support external CSS/JS out of the box
- Bring more inline with Gulp best practices
- Allow support for dynamic project folders for WCT
- Remove double-page refresh when using JSHint/JS tasks
- Remove del race condition causing build breakage for a few folks
A full changelog of what's been updated since 1.1.0.
Downloads available 📦
Beginners
⬇️ polymer-starter-kit-light-1.1.1 - a simpler start with just Polymer, some elements and layout.
This requires no additional tools from us and already has dependencies checked in. You can download this version, cd app
into it and just run python -m SimpleHTTPServer 8080
(or for Windows python -m http.server 8080
, WAMP or another local server setup) to get it running.
Intermediate - Advanced users
⬇️ polymer-starter-kit-1.1.1.zip - the kit with all of our build process & developer tooling and (optional) offline support. Use this version if building something you're targeting for production.
You will need to run a one-liner to install the Node and Bower dependencies needed once downloaded. We walk you through this in our README.
Updating from 1.x.y to 1.1.1
If you've previously downloaded a copy of the full Starter Kit and would like to update to the latest version, here's a git workflow for doing so:
git init
git checkout -b master
git add .
git commit -m 'Check-in 1.1.0'
git remote add upstream https://github.com/polymerelements/polymer-starter-kit.git
git fetch upstream
git merge upstream/master
# resolve the merge conflicts in your editor
git add . -u
git commit -m 'Updated to 1.1.1'
Thanks! Try 1.1.1 and file bugs! 🐛
As always, a huge thank you to our many lovely contributors. If you find anything out of place with this release, please file a bug and we'll take a look at it as soon as possible.