Replaces script references with Google CDN ones
Issues with the output should be reported on the google-cdn issue tracker.
$ npm install --save-dev gulp-google-cdn
const gulp = require('gulp');
const googleCdn = require('gulp-google-cdn');
exports.default = () => (
gulp.src('index.html')
.pipe(googleCdn(require('./bower.json')))
.pipe(gulp.dest('dist'))
);
Type: object
Type: object
See the google-cdn
options.