Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

1.2.2

Compare
Choose a tag to compare
@addyosmani addyosmani released this 13 Jan 15:32
· 332 commits to master since this release

πŸ’ New to the project? Download Polymer Starter Kit Light and serve up the app directory. Simples. A video walkthrough of the project and tutorials are also available.

PSK 1.2.2 is now out. A full changelog is available for this release. Thanks to everyone that contributed <3. Check out the Highlights and available Downloads below.

Highlights

  • πŸ“· Image optimisation now only runs on gulp production builds to dist
  • πŸ“” New Deploy to Google App Engine recipe added
  • 🎭 Icons added to support ManifoldJS
  • 🚿 Cleaned up deprecated /deep/ references
  • ♻️ Reverted back to using upstream <paper-menu> now that item highlighting is fixed
  • 🎨 Updated to use the latest paper-styles theme custom properties
  • πŸ““ Minor improvements to the Chrome Dev Editor recipe
  • πŸ‘‹ Friendly error message now shown if missing dotfiles (e.g .bowerrc)
  • πŸ›€ Clean-up: added missing imports to shared styles, en html lang to *.html
  • πŸ”¨ Infra: automatic deployment of latest PSK to GitHub pages & Firebase is now in place
  • πŸ”¨ Infra: Tests now also run correctly under native Shadow DOM

Downloads available πŸ“¦

Beginners

⬇️ polymer-starter-kit-light-1.2.2 - 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 with Python 3 python -m http.server 8080), WAMP or another local server setup to get it running.

Intermediate - Advanced users

⬇️ polymer-starter-kit-1.2.2.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.2.1 to 1.2.2

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.2.1'
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.2.2'