UNPKG

286 BJavaScriptView Raw
1// Class to export those objects which are to be used as singleton objects in all the dependent pacakges
2// This is done so that properties set anywhere are available across all pacakges at all dependency levels
3module.exports = {
4 yargs: require('yargs'),
5 gulp: require('gulp'),
6};