Skip to content

Instantly share code, notes, and snippets.

@SystemParadox
SystemParadox / updateManifest.js
Last active May 12, 2016 15:27
gulp plugin to generate manifest for cordova-app-loader
/***
Gulp plugin to generate a manifest.json for cordova-app-loader.
Example usage:
```
var updateManifest = require('./updateManifest');
gulp.task('manifest', function () {
gulp.src(['www/app.js', 'www/style.css'])
.pipe(updateManifest('manifest.json', { load: ['www/app.js'] })