gulp-polymer-build-utils
v1.6.0
Published
Utils to simplify building Polymer applications
Downloads
19
Keywords
Readme
gulp-polymer-build-utils
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);
});