Simple JSONP wrapper Gulp Plugin.
###Installation
npm install gulp-jsonp
###Simple Usage
var gjsonp = require("gulp-jsonp");
/**
* Build JS
*/
gulp.task('js', function () {
gulp.src(['./src/**/*.html'])
.pipe(gjsonp({
callback: "__myJSONPCallbackFunction"
}))
.pipe(gulp.dest('./dist/'));
});
###Output The plugin will rename files to have a .js extension, and wrap the contents in an object like so:
__myJSONPCallbackFunction({"filename":"index.html","contents":"[BASE64 ENCODED CONTENTS]"});