-
-
Save VanDalkvist/67271ebc674877a37654 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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); | |
| }); | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| "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