UNPKG

26.3 kBMarkdownView Raw
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](http://keepachangelog.com/)
6and this project adheres to [Semantic Versioning](http://semver.org/).
7
8<!-- ## Unreleased -->
9<!-- Add new, unreleased changes here. -->
10
11## v1.9.3 [12-19-2018]
12* Replace `github` library with `@octokit/rest` to pass npm audit.
13
14## v1.9.2 [12-06-2018]
15* Updated dependencies.
16 * @polymer/esm-amd-loader@1.0.4 - loads AMD modules with
17 `crossorigin=anonymous` by default to match native module script
18 behavior.
19
20## v1.9.1 [11-15-2018]
21* Updated dependencies.
22
23## v1.9.0 [11-12-2018]
24* Polymer 3.x templates now use lighter-weight dependency-free `wct-mocha`
25 for testing.
26
27## v1.9.0-pre.2 [10-25-2018]
28* Include latest official `web-component-tester` update adding
29 support for `wct-mocha` alternative to `wct-browser-legacy` package.
30* Update `wct-local` to fix Firefox 63 testing issue with outdated
31 geckodriver.
32
33## v1.9.0-pre.1 [10-15-2018]
34* Fix an issue where we were passing lint rule help text through chalk
35 with unescaped chalk-specific syntax, causing chalk parsing errors.
36
37## v1.8.1 [10-25-2018]
38* Update package-lock to pickup wct-local 2.1.3 to fix Firefox 63 testing.
39
40## v1.8.0 [08-15-2018]
41* Fix a case where the CustomElementsEs5Adapter script was not added to the
42 builds when the `js.compile` is an object with a target property of es5.
43* Updated web-component-tester to v6.8.0, which changes the set of browsers
44 when testing on Travis CI.
45
46## v1.7.7 [06-28-2018]
47* Update dependencies.
48
49## v1.7.6 [06-25-2018]
50* Node 10.5+ now supported!
51* Breaks Node 6; using Node's built-in promisify, which is not available in
52 versions of Node prior to 8.
53
54## v1.7.4 [06-19-2018]
55* Regenerate shrinkwrap to pick up latest dependencies.
56* Fix issue caused by previous update where `polymer test -s` flag could not
57 be used multiple times.
58* Fix incorrect relative paths to the component directory in push manifests.
59* Fix push manifest generation crash with ES module projects.
60
61## v1.7.3 [06-11-2018]
62* Regenerate shrinkwrap to pick up latest dependencies.
63
64## v1.7.2 [05-11-2018]
65* Fix bug in `polymer-3-element` init template where `polymer/dom-module.js`
66 could be loaded twice when serving from the polyserve `/components/`
67 directory.
68* Fix names of `uncompiled-bundled` and `uncompiled-unbundled` build presets.
69
70## v1.7.1 [05-09-2018]
71* Workaround an NPM shrinkwrap bug which was causing users to install the CLI's
72 250MB of devDependencies unnecessarily.
73* Fixed polymer 3.x application and element templates to use the `html` tagged
74 template literal function.
75
76## v1.7.0 [05-08-2018]
77* Fix bug with `init` templates and missing `.gitignore` files due to npm
78 renaming them to `.npmignore` on install of cli.
79* Fix `test` bug which broke Windows support relating to path delimeters.
80* Change the default value of --module-resolution to "node".
81* Polymer `lint` and `analyze`, when run without files, will look for sources
82 from your `polymer.json` file. If none are given, it will scan all matching
83 files as before.
84 - Specifically it considers any files listed in `sources`, `fragments`,
85 `shell`, and `entrypoint` as the source files for your project, and will
86 ignore all others.
87* Updated dependencies.
88
89## v1.7.0-pre.17 [05-03-2018]
90* The transform for `import.meta` now uses the special `"meta"` dependency
91 provided by
92 [@polymer/esm-amd-loader](https://github.com/Polymer/tools/tree/master/packages/esm-amd-loader),
93 instead of injecting a static path. As a result, it is now always coupled with
94 the AMD transform, and cannot be enabled independently.
95* The [regenerator runtime](https://github.com/facebook/regenerator) is now
96 injected into projects that are compiling to ES5. This is needed to support
97 async/await and generators. `serve` will include the runtime in each script
98 where it is used while `build` will include it once, inline, in the entrypoint
99 HTML file.
100* Added es5, es2015, es2016, es2017, and es2018 compile targets to the
101 `js.compile` option of `polymer.json`, to allow fine grained control over
102 which JavaScript features to compile during `build`.
103
104## v1.7.0-pre.16 [05-01-2018]
105* Dropped support for node v6. This is a soft break, as we aren't
106 making any changes that are known to break node v6, but we're no longer testing against it. See our [node version support policy](https://www.polymer-project.org/2.0/docs/tools/node-support)
107 for details.
108* `build`:
109 * Disable the `simplify` babel plugin when minifying javascript. See
110 https://github.com/babel/minify/issues/824
111 * Disable the `mangle` babel plugin as well. See
112 https://github.com/Polymer/tools/issues/261
113* `serve`:
114 * Fixed issue where resources would be cached after restarting with
115 different compilation/transformation options. We've turned off most
116 browser-side caching. As a reminder: do not use `polymser serve` as a
117 production webserver, it is designed for development.
118* `serve`, `build`:
119 * Replaced RequireJS AMD loader with
120 [@polymer/esm-amd-loader](https://github.com/Polymer/tools/tree/master/packages/esm-amd-loader),
121 which is smaller and better emulates the behavior of ES modules.
122 * Add "webcomponents-bundle.js" to the heuristic used to determine when to
123 inject the Custom Elements ES5 Adapter.
124
125## v1.7.0-pre.15 [04-25-2018]
126* `@babel/preset-es2015` has been replaced with a manually-created version so that `@babel/plugin-transform-classes` can be pinned to v7.0.0-beta.35 to avoid a bug where the polyfilled HTMLElement constructor is not called. (https://github.com/babel/babel/issues/7506)
127* Rewritten dynamic `import()` calls now test if a bundle has exports before attempting to destructure bundle.
128
129## v1.7.0-pre.14 [04-23-2018]
130* `init`:
131 * Fixed a bug which caused `.gitignore` to be excluded from published templates.
132* `build`:
133 * Disable Babel `minify-constant-folding` plugin when minifying. This plugin has a bug that breaks when a constant is exported from a module (https://github.com/babel/minify/issues/820).
134 * Added `--auto-base-path` flag. Sets the entrypoint `<base>` tag for all builds to match the name of that build. Unlike other flags, does not necessarily trigger a single one-off build.
135* `serve`, `test`:
136 * Stricter requirements for determining when a browser supports modules, and
137 hence when to automatically transform modules to AMD. We now require support
138 for dynamic import and import.meta.
139
140<!-- Add new, unreleased items here. -->
141
142## v1.7.0-pre.13 [04-19-2018]
143* `init`
144 * Added the `polymer-3-starter-kit` template; a (prerelease) version of
145 Polymer Starter Kit, ported to Polymer 3.
146
147## v1.7.0-pre.12 [04-18-2018]
148* `serve`
149 * Fix node module resolution for the case where the root package is served
150 from the components/ directory and imports a module from its own package
151 using a path.
152
153## v1.7.0-pre.11 [04-17-2018]
154* `build`
155 * The Babel helpers script now includes all Babel helpers that could be used by the ES5 compilation and AMD transforms.
156 * Inline JavaScript will now only be transformed to AMD modules if they have type=module.
157 * External JavaScript files will now only be transformed to AMD modules if they contain module import/export syntax.
158
159## v1.7.0-pre.10 [04-12-2018]
160* Pick up latest fixes to web-component-tester.
161
162## v1.7.0-pre.9 [04-11-2018]
163* Fix AMD transform bug where if an HTML document had multiple type=module scripts, and any of them (apart from the first) had any kind of import, then that import was not accessible (because it was mapped to the wrong module callback function argument).
164* Update to latest web-component-tester.
165
166## v1.7.0-pre.8 [04-11-2018]
167* Fix broken release.
168
169## v1.7.0-pre.7 [04-10-2018]
170* Update polyserve for latest changes.
171
172## v1.7.0-pre.6 [04-09-2018]
173* Bring in latest polymer-analyzer and polymer-build fixes to node resolution
174 and babel helpers.
175
176## v1.7.0-pre.4 [04-05-2018]
177- `build`
178 - ES modules are now be bundled.
179 - ES modules can now be transformed to AMD modules.
180 - Minification and other transforms now happen after bundling instead of before.
181
182## v1.7.0-pre.3 [03-22-2018]
183- Fix -—module-resolution default from polyserve overriding polymer.json
184
185## v1.7.0-pre.2 [03-22-2018]
186- Fixed issue where the `--module-resolution` wasn't being handled for the `serve` command.
187
188## v1.7.0-pre.1 [03-21-2018]
189- Added `--npm` and `--component-dir` global flags, which are passed to the `build`, `lint`, `test`, and `serve` commands.
190- All dash-case command line arguments are now converted to camelCase before overwriting options from polymer.json.
191- Compile/minify steps can now parse object-rest-spread and dynamic-import.
192- Fixed [issue #950](https://github.com/Polymer/polymer-cli/issues/950) where tagged template literals (such as `Polymer.html`) were incorrectly transpiled
193- Automatically generate a `.gitignore` file when execute init command and select `element` or `application`.
194- Added ability to use globs on `analyze` and `lint` commands
195- JS compile build transformer will now rewrite bare module specifiers to paths.
196- Add `--module-resolution` flag which can be `none` (the default) or `node`.
197- Update dependencies.
198
199## v1.6.0 [02-02-2018]
200- Added support for `exclude` option in `polymer.json` for the build command's `minify` and `compile` options for `css`, `js` and `html` files.
201- Added `--fix` option to `polymer lint`. When passed, some warnings with simple mechanical solutions will be fixed.
202 - Also supports warnings which can be addressed with less-safe changes via
203 an interactive prompt and the `--edits` flag. See `polymer lint --help` for
204 more info.
205- Added `--watch` (shorthand `-w`) option to `polymer lint`. When passed, we will watch the filesystem for changes and rerun the linter immediately afterwards.
206 - Also works with `--fix` to automatically fix and report warnings as you work!
207- `build` Added a CLI argument for setting the `basePath` option: `--base-path`.
208- Derives node version check from the package.json.
209- The polymer.json project config can now specify paths to exclude when minifying files and compiling JavaScript. See https://github.com/Polymer/polymer-project-config/issues/50 for more.
210
211## v1.5.7 [10-11-2017]
212- Updated css-slam, bower and other dependencies.
213
214## v1.5.6 [10-02-2017]
215- Updated Polymer 2.0 element test file template to use ES6.
216- Update JS minification package babili to the new package-name babel-minify.
217- Updated to latest WCT and Polyserve versions to support npm and `<script type=module>` in on-the-fly compilation and tests.
218
219## v1.5.5 [09-21-2017]
220- Upgraded web-component-tester to v6.2.0 and polyserve 0.22.1 for better ES module support.
221
222## v1.5.4 [08-31-2017]
223- Upgraded web-component-tester to v6.1.5 to address IE11 issues.
224
225## v1.5.3 [08-31-2017]
226- Upgraded web-component-tester to v6.1.4 to address IE11 issues.
227
228## v1.5.2 [08-26-2017]
229- Upgraded web-component-tester to v6.1.3 to address yarn installation issues.
230
231## v1.5.1 [08-22-2017]
232- Upgraded web-component-tester to v6.1.2.
233
234## v1.5.0 [08-22-2017]
235- Fix issue where the `--fragment` flag was being ignored.
236- Added support for `polymer test --npm` option.
237
238## v1.4.1 [08-10-2017]
239- Fixed the `polymer serve --npm` option.
240
241## v1.4.0 [08-08-2017]
242- Upgraded to Polymer Build ^2.0.0 which uses Polymer Bundler ^3.0.0.
243- When no specific option is set for Bundler's `rewriteUrlsInTemplates` the CLI attempts to get the version of Polymer for the project using `bower`. When Polymer 2.x is discovered, `rewriteUrlsInTemplates` is defaulted to `false`. In case of Polymer 1.x or where version can not be identified, it defaults to `true`. Any user settings override these defaults.
244- Fix issue where negative `extraDependencies` globs were not working.
245- test: Add support for WCT `config-file` option.
246
247## v1.3.1 [07-06-2017]
248- Fixed [issue #710](https://github.com/Polymer/polymer-cli/issues/710) where the es5 custom elements adapter would not be added when bundling.
249- Fixed [issue #767](https://github.com/Polymer/polymer-cli/issues/767) where hyphenated option names for `build` command were effectively ignored.
250
251## v1.3.0 [06-30-2017]
252- Added support for optional polymer-project-config provision of bundler options instead of only boolean value for the `bundle` property of build definitions. See the [Polymer Project Config 3.4.0 release notes](https://github.com/Polymer/polymer-project-config/pull/37) for details on new options available in polymer.json.
253- Includes Polymer Build fixes to push-manifest generation and others. See [Polymer Build 1.6.0 release notes](https://github.com/Polymer/polymer-build/pull/249).
254- Includes Polymer Bundler fixes to shell strategy and others. See [Polymer Bundler 2.2.0 release notes](https://github.com/Polymer/polymer-bundler/pull/573).
255
256## v1.2.0 [06-12-2017]
257- Updated lint rule to `polymer-2` in the `polymer-2-element` template.
258- Drop 1.x init templates. Bump `shop` init template to latest version.
259
260## v1.1.0 [05-23-2017]
261- Updated dependency on latest polymer-project-config so that bundled presets include prefetch link generation.
262- `build` Entrypoints will now be properly cached by generated service workers, and assets will be fetched by service workers using relative URLs to support apps mounted at non-root host paths.
263- `build` The `basePath` option no longer adds a prefix to service workers or push manifests. Relative URLs are used instead.
264
265## v1.0.2 [05-19-2017]
266- Updates dependencies on latest polymer-build and polymer-bundler to reduce extraneous html tag output when bundling and generating prefetch links.
267
268## v1.0.1 [05-18-2017]
269- Update element and application templates to latest stable versions
270- Prefetch links are now compatible with bundler and differential serving w/ base tag hrefs in entrypoint documents.
271
272## v1.0.0 [05-16-2017]
273- Official 1.0.0 release of the Polymer CLI! 🎉
274- `build` Support for new `basePath` build config option that remaps paths to assist in serving at non-root paths, such as when doing differential serving of multiple builds from the same host. Affects service worker generation, push manifest generation, and also updates the entrypoint's `<base>` tag if found.
275- `build` Building your project will now write a copy of your `polymer.json` to the build directory. This provides a log of the build options used at the time, including expansion of presets.
276
277## v0.18.4 [05-15-2017]
278- Updated dependencies to support official `polymer-analyzer` 2.0.0 and `web-components-tester` 6.0.0 releases.
279
280## v0.18.3 [05-12-2017]
281- Fix the CLI preset flag.
282- Fix an issue where compiling JS would crash in versions of node with native async iterators.
283- `bundle` no longer emits any JS or CSS files which have been inlined into bundles.
284
285## v0.18.2 [05-10-2017]
286
287- `build` Support build configuration "presets".
288- `build` Performance improvements, including reduction of extraneous insertions of html, head and body tags.
289- `bundle` has many bug fixes and support for lazy imports.
290- Update polyserve to 0.19.0 which adds HTTP compression and JS compilation for Mobile Safari and Vivaldi browsers.
291- Produce much smaller output when compiling many JS files to ES5 by inserting babel helpers only once, at the toplevel entrypoint.
292
293- `init`: Propagate `description` from `init` to application templates in `index.html` meta tag.
294
295- **New Command Aliases**: Commands now support aliases. `polymer install` has been aliased under `polymer i`.
296
297## v0.18.1 [04-25-2017]
298
299- `init` small template fixes.
300- `serve` now respects the `entrypoint` configured in `polymer.json`.
301- Remove ability to run a locally installed version of the CLI if it exists in the current working directory. This unexpected behavior was never documented but some users could be running an incorrect version of the CLI as a result.
302- Update Node.js version pre-run check to match latest supported versions.
303
304## v0.18.0 [04-13-2017]
305
306v0.18.0 contains our latest work to support both Polymer 1.x & 2.0 projects. There are a bunch of big new features included in this update, as well as several breaking changes since the latest version. Here is a quick summary of the major changes for anyone who is updating from our previous `latest`/`v0.17.0` version:
307
308- **New Polymer 2.0 Templates**: `polymer init` has added new Polymer 2.0 templates for starter elements, applications, and our latest Polymer Starter Kit & Shop applications. Run `polymer init` to see the whole list.
309- **Updated `lint` Command**: `polymer lint` is now powered by our newest version of [polymer-linter](https://github.com/Polymer/polymer-linter). The new linter can show you the exact location of any problems in your code, and is much more configurable. Run `polymer help lint` for more information.
310- **Updated `build` Command**: `polymer build` is now powered by our newest version of [polymer-build](https://github.com/Polymer/polymer-linter), which provides even more optimizations and features for customizing your build. Run `polymer help build` for more information.
311- **New Build Output**: The biggest change to `polymer build` behavior is that it no longer defaults to outputting two, optimized build targets. The new default behavior is to generate a single `/build/default` directory with all configurable optimizations turned off by default. To customize your build(s) and include different optimizations, you can either include CLI flags (like `--js-compile`) or custom polymer.json build configurations. See the latest [polymer.json "builds"](https://www.polymer-project.org/2.0/docs/tools/polymer-json#builds) specification for more information.
312- **New `analyze` Command:** Generates a JSON blob of metadata about your element(s). This can be useful to have for tooling and analysis.
313- **New `install` Command:** Like `bower install`, but with support for installing "variants" as defined in your `bower.json`. See [the glossary](https://www.polymer-project.org/2.0/docs/glossary#dependency-variants) for more information.
314- Remove Node v4 support: Node v4 is no longer in Active LTS, so as per the [Polymer Tools Node.js Support Policy](https://www.polymer-project.org/2.0/docs/tools/node-support) the Polymer CLI will not support Node v4 going forward. Please update to Node v6 or later to continue using the latest verisons of Polymer tooling.
315
316<details>
317 <summary><strong>See the Full v0.18.0 Pre-Release Changelog</strong></summary><p>
318
319#### v0.18.0 [04-13-2017]
320
321- `build`: Add `--add-push-manifest`/`addPushManifest` option for generating a [`push-manifest.json`](https://github.com/GoogleChrome/http2-push-manifest) file for your project.
322- `build`: Fix a bug where `--insert-prefetch-links` would generate 404ing imports.
323- `build`: Update automatic `webcomponentsjs` polyfilling to move it and all affected elements following it into the body so that the `custom-elements-es5-adapter.js` can work properly in IE11. (See [#627](https://github.com/Polymer/polymer-cli/issues/627))
324- `init`: Init template elements now properly inherit from the given element/app name.
325- `init`: Fix `polymer-2-element` template serving by removing iron-component-page until it can support Polymer 2.0 class-based elements.
326- `init`: Update polymer 2.0 application & element tests to improve and fix broken tests.
327- `init`: Update polymer 1.x application & element template WCT dependency to `^6.0.0-prerelease.5`.
328- `init`: Update polymer application & element READMEs.
329- `serve`: Update to polyserve@v0.17.0 to support autocompilation when serving to Chromium, Edge browsers.
330- [Breaking] Remove Node v4 support: Node v4 is no longer in Active LTS, so as per the [Polymer Tools Node.js Support Policy](https://www.polymer-project.org/2.0/docs/tools/node-support) the Polymer CLI will not support Node v4. Please update to Node v6 or later to continue using the latest verisons of Polymer tooling.
331
332#### v0.18.0-pre.15 [03-22-2017]
333
334- `build`: Update automatic `webcomponentsjs` polyfilling to use `custom-elements-es5-adapter.js` instead of broken `webcomponents-es5-loader.js`. Fixes compiled, bundled builds in Chrome. (See [#605](https://github.com/Polymer/polymer-cli/issues/605))
335
336#### v0.18.0-pre.14 [03-20-2017]
337
338- The experimental linter has graduated to be the new default. Removed `polymer experimental-lint` command. `polymer lint` now runs [polymer-linter](https://github.com/Polymer/polymer-linter). See the README and `polymer lint --help` for more info.
339
340#### v0.18.0-pre.13 [03-08-2017]
341
342- When running `polymer build` and compiling JS to ES5, we will also rewrite script includes of `webcomponents-loader.js` to `webcomponents-es5-loader.js`.
343
344#### v0.18.0-pre.12 [03-07-2017]
345
346- Add PSK 3.0 (Polymer 2.0 Polymer Starter Kit) template to the init command.
347- Automatically include un-optimized `webcomponentsjs` polyfills in builds.
348- Update Polymer Analyzer, Polymer Bundler and Polymer Linter dependencies
349 - Bundles now include optimizations specified in builds.
350 - Much more detailed output of `analyze` command.
351
352#### v0.18.0-pre.10 [02-21-2017]
353
354- **New `build` Behavior**: New build options have been added to give you more control over the generated build. These options can be defined in your project's `polymer.json`, or via CLI flags. Run `polymer build --help` to see a list of new supported CLI flags.
355 - **Previously default behaviors (minifying JavaScript, generating service workers, etc) are now turned off by default.**
356 - Multiple builds can now be defined in your project's `polymer.json`. See [the latest documentation](https://github.com/Polymer/docs/blob/ff74953fa93ad41d659a6f5a14c5f7072368edbd/app/2.0/docs/tools/polymer-json.md#builds) for information on configuring your project build(s).
357- `init`: Add new 2.0 polymer element & application templates.
358- Update dependencies.
359- **New `experimental-lint` command**: configurable with per-project rulesets, either with cli args or in your polymer.json. Will soon replace the `lint` command, for now run it as `polymer experimental-lint`. Specify "polymer-2", "polymer-2-hybrid", or "polymer-1" to customize the lint warnings that you receive. Run `polymer help experimental-lint` for more detail.
360
361#### v0.18.0-alpha.9
362
363- Fixed a bug where `polymer init` would crash if run from a folder with a
364 package.json that's missing a name property. https://github.com/Polymer/polymer-cli/issues/186
365- Fixed a bug where `polymer build` wouldn't analyze behaviors correctly.
366- Fixed a bug where `polymer test` would complain about the version of wct it was bundled with.
367- Updated dependencies.
368
369#### v0.18.0-alpha.8
370
371- Updated dependencies.
372
373#### v0.18.0-alpha.7
374
375- **Added `analyze` command:** Generates a JSON blob of metadata about your element(s). Useful for tooling and analysis.
376- **Added `install` command:** Installs "variants" defined in your `bower.json`.
377- Upgrade `polyserve` to `v0.6.0-prerelease.6` to handle serving variants
378- Upgrade `web-component-tester` to `6.0.0-prerelease.1` to handle testing variants
379- Upgrade `polymer-build` to `v0.6.0-alpha.1`, which includes an upgrade to the new [`polymer-analyzer`](https://github.com/Polymer/polymer-analyzer).
380- `build`: Rename the `--include-dependencies` flag to `--extra-dependencies`
381- `build`: css is now minified
382- `build`: Lots of bug fixes due to the new polymer-build library and analyzer.
383- `polymer.json`: Rename the `includeDependencies` & `sourceGlobs` fields to `extraDependencies` & `sources`, respectively
384- Added support for v7.x of Node.js, dropped support for v5.x. Please move to an [actively maintained version of Node.js](https://github.com/nodejs/LTS) for the best experience.
385- Upgrade [web-component-tester 6.0](https://github.com/Polymer/web-component-tester/blob/master/CHANGELOG.md) which brings a number of breaking changes to the `test` command.
386- `init`: Fix duplicate names for sub-generators in a directory
387
388</p></details>
389
390## v0.17.0
391
392- Upgrade `web-component-tester` to `v5.0.0`, which includes a new major version of mocha. See [the wct changelog](https://github.com/Polymer/web-component-tester/blob/v5.0.0/CHANGELOG.md#500) for more details.
393- Upgrade `polyserve` to `v0.13.0`. See [the polyserve changelog](https://github.com/PolymerLabs/polyserve/blob/master/CHANGELOG.md) for more details.
394- `build`: Add support for relative root path in polymer.json
395- `build`: clear the build directory before building (#332)
396- `init`: Fix issue where the application element name always used the current working directory name by default
397- `init`: Fix undefined template description
398- Fix issue with command failures exiting as successes (#418)
399
400## v0.16.0
401
402- build: fail immediately if polymer.json is invalid
403- build: Add missing support for `sourceGlobs` & `includeDependencies` in polymer.json
404- polymer-build@v0.4.1 (fixes ignored `staticFileGlobs` bug)
405
406
407## v0.15.0
408
409- replace app-drawer-template with starter-kit
410
411
412## v0.14.0
413
414- replace unneccesary gulp dependency with vinyl-fs
415- polymer-build@v0.4.0 fixes build path issues
416- but wait... THERE'S MORE! polymer-build@v0.4.0 also handles external resources properly now
417- fix bug where `--version` flag threw an exception
418
419
420## v0.13.0
421
422- Refactor build logic out into standalone library: https://github.com/Polymer/polymer-build. Build behavior should remain the same from v0.12.0, but lots of work has been done in the new library to fix bugs and reduce build time/size.
423- Refactor build file optimization streams
424- Send an error code on polymer command run error
425
426
427## v0.12.0
428
429- gulp-typings@2.0.0
430- github@1.1.0
431- Update command-line-* suite of dependency, refactor to accomodate
432- Refactor init command to be more easily testable, reduce startup times
433- Catch exception thrown by findup when finding gulpfiles
434- Add input linting argument, and fix major bug with paths
435- init: Don’t crash when a package.json is present with no name
436- Speed up start time, move last of the commands to load their dependencies at runtime
437- Add demo and description for element template (#229)
438- specify the sync interface when searching templates for package.json
439- Removes unneccesary liftoff dependency
440- Add update-notify to notify users when their cli is out of date
441- Add tests for init command