05-makeMobi.js 225 B

12345
  1. const shell = require('shelljs');
  2. const utils = require('./utils/base');
  3. shell.exec(`zip -p -r ${utils.name}.epub book`);
  4. shell.exec(`./utils/kindlegen -c1 ${utils.name}.epub -locale zh`);
  5. shell.exec(`rm ${utils.name}.epub`);