Skip to content

Instantly share code, notes, and snippets.

@VanDalkvist
Forked from wtnabe/gulpfile.js
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save VanDalkvist/67271ebc674877a37654 to your computer and use it in GitHub Desktop.

Select an option

Save VanDalkvist/67271ebc674877a37654 to your computer and use it in GitHub Desktop.
gulp.task('cordova-plugin-install', function() {
require('./plugins.json').forEach(function(plugin) {
sh.exec('cordova plugin add ' + plugin, {async: false}, function(code, output) {
console.log(output);
});
});
});
[
"org.apache.cordova.device",
"org.apache.cordova.console",
"com.ionic.keyboard"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment