sindresorhus / gulp-google-cdn

Replaces script references with Google CDN ones

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-google-cdn

Replaces script references with Google CDN ones

Issues with the output should be reported on the google-cdn issue tracker.

Install

$ npm install --save-dev gulp-google-cdn

Usage

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'))
);

API

googleCdn(bowerConfig, options?)

bowerConfig

Type: object

options

Type: object

See the google-cdn options.

About

Replaces script references with Google CDN ones

License:MIT License


Languages

Language:JavaScript 100.0%