forked from rDrama/rDrama
1
0
Fork 0
rDrama/node_modules/yargs/helpers/index.js

15 lines
291 B
JavaScript
Raw Normal View History

2021-12-13 22:28:32 +00:00
const {
applyExtends,
cjsPlatformShim,
Parser,
processArgv,
} = require('../build/index.cjs');
module.exports = {
applyExtends: (config, cwd, mergeExtends) => {
return applyExtends(config, cwd, mergeExtends, cjsPlatformShim);
},
hideBin: processArgv.hideBin,
Parser,
};