29 lines
735 B
JavaScript
29 lines
735 B
JavaScript
"use strict";
|
|
const path = require("path");
|
|
const mkdirp = require("mkdirp-then");
|
|
const rimraf = require("rimraf-then");
|
|
|
|
const download = require("./download.js");
|
|
const convert = require("./convert.js");
|
|
|
|
require("./track-rejections.js");
|
|
|
|
const START_CHAPTER_URL = "https://parahumans.wordpress.com/2011/06/11/1-1/";
|
|
|
|
const cachePath = path.resolve("cache");
|
|
const outPath = path.resolve("out");
|
|
const contentPath = path.resolve(outPath, "OEBPS");
|
|
|
|
rimraf(outPath)
|
|
.then(function () {
|
|
return mkdirp(contentPath);
|
|
})
|
|
.then(function () {
|
|
return download(START_CHAPTER_URL, cachePath);
|
|
})
|
|
.then(function () {
|
|
return convert(cachePath, contentPath);
|
|
})
|
|
.then(function () {
|
|
console.log("All done!");
|
|
});
|