Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
Vulcanize and minify polymer.js. Fix #157, Fix #151
Browse files Browse the repository at this point in the history
  • Loading branch information
robdodson committed Mar 9, 2015
1 parent 1b785d6 commit ffda1e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ module.exports = function (grunt) {
vulcanize: {
default: {
options: {
strip: true
strip: true,
inline: true
},
files: {
'<%%= yeoman.dist %>/elements/elements.vulcanized.html': [
Expand Down
3 changes: 2 additions & 1 deletion app/templates/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ gulp.task('vulcanize', function () {
return gulp.src('dist/elements/elements.vulcanized.html')
.pipe($.vulcanize({
dest: DEST_DIR,
strip: true
strip: true,
inline: true
}))
.pipe(gulp.dest(DEST_DIR))
.pipe($.size({title: 'vulcanize'}));
Expand Down

0 comments on commit ffda1e8

Please sign in to comment.