Skip to content
This repository was archived by the owner on Dec 7, 2021. It is now read-only.

Commit 0cb7d44

Browse files
author
Fred K. Schott
committed
v0.13.0
1 parent c2d8a9b commit 0cb7d44

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v0.13.0
4+
5+
- Refactor build logic out into standalone library: https://github.com/Polymer/polymer-build
6+
- Refactor build file optimization streams
7+
- Send an error code on polymer command run error
8+
9+
310
## v0.12.0
411

512
- gulp-typings@2.0.0

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,10 @@ Use `index.html` as the entryopint, or read from `polymer.json`:
130130

131131
$ polymer build
132132

133-
`build` is opinionated and defaults to a good build for app-shell apps. It works very much like a pre-configured gulpfile. Over time the build steps that Polymer-CLI uses will be available for use with Gulp, and the CLI will add hooks that let you extend it's functionality via Gulp.
133+
`build` is opinionated and defaults to a good build for app-shell apps. It writes the built output to `build/bundled` and `build/unbundled` folders. Both outputs have been run though HTML, JS and CSS optimizers, and have a Service Worked generated for them. The bundled folder contains the application files process by Vulcanize, Polymer's HTML bundler, for optimal loading via HTTP/1. The unbundled folder is optimized for HTTP/2 + Push.
134+
135+
While the build command should support most projects, some users will need greater control over their build pipeline. If that's you, check out the [polymer-build](https://github.com/Polymer/polymer-build) library. Polymer-build can be called and customized programatically, giving you much greater control than the CLI can provide. Visit the repo for usage information and examples.
134136

135-
`build` writes the built output to `build/bundled` and `build/unbundled` folders. Both outputs have been run though HTML, JS and CSS optimizers, and have a Service Worked generated for them. The bundled folder contains the application files process by Vulcanize, Polymer's HTML bundler, for optimal loading via HTTP/1. The unbundled folder is optimized for HTTP/2 + Push.
136137

137138
### serve
138139

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "polymer-cli",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"description": "A commandline tool for Polymer projects",
55
"main": "lib/polymer-cli.js",
66
"engines": {

0 commit comments

Comments
 (0)