2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-29 16:27:55 -08:00
|
|
|
process.env.BLUEBIRD_DEBUG = true;
|
|
|
|
|
2020-02-27 18:57:39 -08:00
|
|
|
const loadPublicFiles = require('./public');
|
2020-02-29 16:27:55 -08:00
|
|
|
const loadPostFiles = require('./posts');
|
2020-02-25 19:37:10 -08:00
|
|
|
const Cache = require('./cache');
|
2020-02-27 18:57:39 -08:00
|
|
|
const Promise = require('bluebird');
|
|
|
|
const fs = require('fs-extra');
|
2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-27 18:57:39 -08:00
|
|
|
const primeTweets = require('./page-tweets');
|
|
|
|
const pageWriter = require('./page-writer');
|
2020-02-25 19:37:10 -08:00
|
|
|
const evaluate = require('./evaluate');
|
2020-02-27 18:57:39 -08:00
|
|
|
const { resolve } = require('./resolve');
|
2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-25 19:37:10 -08:00
|
|
|
const favicon = require('./favicon');
|
2020-02-28 09:15:21 -08:00
|
|
|
const scss = require('./scss');
|
2020-02-27 18:57:39 -08:00
|
|
|
const svg = require('./svg');
|
2020-02-28 10:27:52 -08:00
|
|
|
const scripts = require('./scripts');
|
|
|
|
|
2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-25 19:37:10 -08:00
|
|
|
exports.everything = function (prod = false) {
|
2020-02-29 16:27:55 -08:00
|
|
|
async function fn () {
|
2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-29 16:27:55 -08:00
|
|
|
// load a directory scan of the public and post folders
|
|
|
|
const [ PublicFiles, PostFiles ] = await Promise.all([
|
|
|
|
loadPublicFiles(),
|
|
|
|
loadPostFiles(),
|
|
|
|
]);
|
2020-02-27 18:57:39 -08:00
|
|
|
|
|
|
|
// load data for all the files in that folder
|
2020-02-27 21:02:47 -08:00
|
|
|
await Promise.map(PublicFiles.assets, (p) => p.load());
|
|
|
|
await Promise.map(PublicFiles.pages, (p) => p.load(PublicFiles));
|
2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-29 16:27:55 -08:00
|
|
|
await Promise.map(PostFiles.assets, (p) => p.load());
|
|
|
|
await Promise.map(PostFiles.pages, (p) => p.load(PostFiles));
|
|
|
|
|
|
|
|
|
2020-02-27 18:57:39 -08:00
|
|
|
// prime tweet data for all pages
|
|
|
|
const pages = await primeTweets(PublicFiles.pages);
|
2020-02-29 16:27:55 -08:00
|
|
|
const posts = await primeTweets(PostFiles.pages);
|
|
|
|
|
2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-27 18:57:39 -08:00
|
|
|
// compile all tasks to be completed
|
2020-02-25 19:37:10 -08:00
|
|
|
const tasks = await Promise.all([
|
2020-02-27 18:57:39 -08:00
|
|
|
PublicFiles.tasks,
|
2020-02-29 16:27:55 -08:00
|
|
|
PostFiles.tasks,
|
2020-02-28 09:15:21 -08:00
|
|
|
scss(prod),
|
2020-02-28 10:27:52 -08:00
|
|
|
scripts(prod),
|
2020-02-27 18:57:39 -08:00
|
|
|
svg(prod),
|
2020-02-25 19:37:10 -08:00
|
|
|
favicon(prod),
|
|
|
|
]);
|
2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-28 10:27:52 -08:00
|
|
|
await fs.writeFile(resolve('pages.json'), JSON.stringify(pages.map((p) => p.toJson()), null, 2));
|
2020-02-29 16:27:55 -08:00
|
|
|
await fs.writeFile(resolve('posts.json'), JSON.stringify(posts.map((p) => p.toJson()), null, 2));
|
2020-02-28 10:27:52 -08:00
|
|
|
|
|
|
|
await fs.ensureDir(resolve('dist'));
|
|
|
|
const cache = new Cache({ prod });
|
|
|
|
await cache.load();
|
|
|
|
await evaluate(tasks.flat(), cache);
|
|
|
|
await cache.save();
|
|
|
|
|
2020-02-29 16:27:55 -08:00
|
|
|
await pageWriter([ ...pages, ...posts ], prod);
|
|
|
|
}
|
2020-02-21 20:05:52 -08:00
|
|
|
|
2020-02-29 16:27:55 -08:00
|
|
|
fn.displayName = prod ? 'buildForProd' : 'build';
|
|
|
|
return fn;
|
2020-02-25 19:37:10 -08:00
|
|
|
};
|