dotlouis / StudIonic

Studapp mobile application using Ionic Framework and Cordova
2 stars 0 forks source link

Gulp task to add plugins and keep them tracked #11

Open dotlouis opened 9 years ago

dotlouis commented 9 years ago

Right now when a plugin is added to cordova there is no file that list it. As the plugin directory is not under version control (because large and cluttered, same reasons as node_modules), we need a way to easily install them upon fresh cloning. a gulp task might be appropriate. For example: gulp add-plugin https://urloftheplugin.com which would call ionic plugin add https://urloftheplugin.com then save it in a file like so: {package: "com.creator.plugin", url: "https://urloftheplugin.com", dateAdded: "24/10/2014"}

Same with a task gulp remove-plugin com.creator.package and a task `gulp install-plugin' to install all listed plugins