gulp-polymer-build-utils

Utils to simplify building Polymer applications

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
gulp-polymer-build-utils
1.6.05 years ago6 years agoMinified + gzip package size for gulp-polymer-build-utils in KB

Readme

gulp-polymer-build-utils Build Status Greenkeeper badge
Utils to simplify building Polymer applications
See this blog post about the background and functionality of the gulp plugins.

Usage

Install the build-utils:
npm install gulp-polymer-build-utils --save

Use the plugins and tasks in the Gulp config file gulpfile.js:
const gulp = require('gulp');
const polymerBuildUtils = require('gulp-polymer-build-utils');
const runSequence = require('run-sequence');

gulp.task('prepare-dist', function() {
  return polymerBuildUtils.polymerBuild(require('./polymer.json'))
    .pipe(polymerBuildUtils.addCspCompliance())
    .pipe(polymerBuildUtils.addCacheBusting())
    .pipe(polymerBuildUtils.optimizeAssets())
    .pipe(polymerBuildUtils.injectCustomElementsEs5Adapter())
    .pipe(gulp.dest('dist'));
});

gulp.task('default', function(cb) {
  runSequence('prepare-dist', 'inline-references', cb);
});