Gulp plugin to create cordova-app-loader manifests
var calManifest = require('gulp-cordova-app-loader-manifest');
gulp.task('manifest', function() {
return gulp.src('./www/**')
.pipe(calManifest(options))
.pipe(gulp.dest('./'));
});
options.load = ['**'];
A glob pattern, or array of glob patterns, against which files will be tested before being added to manifest.load.
minimatch
is used for testing.
options.root = './';
Specifies the manifest.root option.