bootstrap.js 293 B

123456789101112131415
  1. const WebpackCLI = require("./webpack-cli");
  2. const runCLI = async (args) => {
  3. // Create a new instance of the CLI object
  4. const cli = new WebpackCLI();
  5. try {
  6. await cli.run(args);
  7. } catch (error) {
  8. cli.logger.error(error);
  9. process.exit(2);
  10. }
  11. };
  12. module.exports = runCLI;