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

Polymer Starter Kit 1.2.0

Compare
Choose a tag to compare
@addyosmani addyosmani released this 25 Nov 15:34
· 430 commits to master since this release

Polymer Starter Kit 1.2.0 is now out! ๐Ÿš€ Check out our release highlights, changelog or skip straight to the Downloads below.

psk-release-deviceart

Highlights

๐Ÿ†• Polymer updates

  • Updated to support Polymer 1.2.3
  • Updated to use Polymer.dom() in app.js (more idiomatic)

๐Ÿ›€ Bug fixes

  • Fixed a 300ms click delay for menu items on iOS
  • Fixed a regression causing the drawer menu to not work in Firefox 38
  • Switched to layout mixins for menu items
  • Switch tests to use webcomponents-lite
  • Remove extraneous tags
  • Trimmed CSS bloat in the app-theme.html

๐Ÿฎ Recipes

๐Ÿ”ฉ Build process

  • Lint all code with JSCS and JSHint
  • gulp-cssmin is deprecated. Switched to gulp-minify-css instead
  • Use gulp-minify-inline to minimize the elements.vulcanized.html after generation
  • Reverted to using Vulcanize over Polybuild. Users required more direct configuration.
  • Switch to using dist() in tasks
  • Improve stability of image optimisation by disabling caching

๐Ÿ“” Documentation

A new tutorial for getting setup, adding your own pages to Polymer Starter Kit and deploying to Firebase is also now available.

Downloads available ๐Ÿ“ฆ

Beginners

โฌ‡๏ธ polymer-starter-kit-light-1.2.0 - 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.0.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.2.0

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.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.0'

Troubleshooting

TypeError: Cannot convert undefined or null to object in task lint

If you see an error like this while running gulp or gulp serve, you may not have correctly copied over the .jshintrc and .jscsrc files needed for linting when extracting/copying Polymer Starter Kit. On Mac, enable showing hidden files, then try extracting/copying Polymer Starter Kit again. This time the extra linting files needed should be visible so you can copy them over without issues.

Thanks! Try 1.2.0 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. We try to ensure PSK works great on all our target devices and are always interested in bug reports to improve this further โญ

psk-devices