first commit

This commit is contained in:
tbushman
2018-10-29 19:41:46 -06:00
committed by mrugesh mohapatra
parent d341b9c45e
commit 5bb3556bfd
14042 changed files with 1580673 additions and 0 deletions

16
probot/presolver/node_modules/shelljs/plugin.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
// Various utilties exposed to plugins
require('./shell'); // Create the ShellJS instance (mandatory)
var common = require('./src/common');
var exportedAttributes = [
'error', // For signaling errors from within commands
'parseOptions', // For custom option parsing
'readFromPipe', // For commands with the .canReceivePipe attribute
'register', // For registering plugins
];
exportedAttributes.forEach(function (attr) {
exports[attr] = common[attr];
});