Replaces references to resources on the Google CDN
npm install google-cdn> Grunt task for replacing refs to resources on the Google CDN.
This module makes it easy to replace references to your bower resources in your
app with links to the libraries on the Google CDN (and some other CDNs).
Install: npm install --save google-cdn
Install CDN data module: npm install --save google-cdn-data (see list of more data modules below)
bower.json:
``json`
{
"name": "my-awesome-app",
"dependencies": {
"jquery": "~2.0.0"
}
}
`javascript
var googlecdn = require('google-cdn');
var bowerConfig = loadJSON('bower.json');
var markup = '';
googlecdn(markup, bowerConfig, {cdn: require('google-cdn-data')}, function (err, result) {
if (err) {
throw err;
}
assert.equal(result,
'');
});
`
Replaces references to libraries supported by the Google CDN in content.bowerJson
The library versions are inferred from the .
options is an optional object with these keys:
- componentsPath: defaults to bower_components, the path you specify incdn
your script tags to the components directory.
- : defaults to require('google-cdn-data'). CDN you want to use. Object of the following format:
`javascript`
{
jquery: {
versions: ['2.0.3', '2.0.2', '2.0.1', '2.0.0'],
url: function (version) {
return '//my.own.cdn/libs/jquery/' + version + '/jquery.min.js';
}
}
}
- grunt-google-cdn
- gulp-google-cdn
- google-cdn-data
- cdnjs-cdn-data
- jsdelivr-cdn-data
You can turn on debugging by setting the DEBUG environment variable togoogle-cdn. E.g.
env DEBUG='google-cdn' grunt cdnify`
BSD