- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
15 lines
291 B
JavaScript
15 lines
291 B
JavaScript
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,
|
|
};
|