2018-07-21 09:12:59 -04:00
|
|
|
const fs = require('fs-extra');
|
2018-03-17 11:27:41 -04:00
|
|
|
const cheerio = require('cheerio');
|
2018-07-21 09:12:59 -04:00
|
|
|
const showdown = require('showdown');
|
2018-03-17 11:27:41 -04:00
|
|
|
const Parcel = require('parcel-bundler');
|
2020-03-08 08:45:52 -04:00
|
|
|
const { SitemapStream, streamToPromise } = require('sitemap');
|
2018-03-17 11:27:41 -04:00
|
|
|
|
|
|
|
process.env.NODE_ENV = 'production';
|
|
|
|
|
2018-07-21 09:12:59 -04:00
|
|
|
const LOG = {
|
|
|
|
error: (...args) => console.error('❌ ERROR', { ...args }),
|
|
|
|
debug: (...args) => {
|
|
|
|
if (process.env.DEBUG) console.log('💡 DEBUG: ', { ...args });
|
|
|
|
},
|
|
|
|
};
|
2020-04-13 10:15:18 -04:00
|
|
|
const handleFailure = (err) => {
|
2018-07-21 09:12:59 -04:00
|
|
|
LOG.error(err);
|
|
|
|
process.exit(1);
|
|
|
|
};
|
|
|
|
|
|
|
|
process.on('unhandledRejection', handleFailure);
|
|
|
|
|
|
|
|
// --- FILES
|
|
|
|
const README = 'README.md';
|
|
|
|
const WEBSITE_FOLDER = 'website';
|
|
|
|
const indexTemplate = `${WEBSITE_FOLDER}/index.tmpl.html`;
|
|
|
|
const indexDestination = `${WEBSITE_FOLDER}/index.html`;
|
|
|
|
|
|
|
|
async function processIndex() {
|
2020-04-13 12:12:42 -04:00
|
|
|
const converter = new showdown.Converter();
|
|
|
|
converter.setFlavor('github');
|
2018-03-18 09:37:19 -04:00
|
|
|
|
2018-07-21 09:12:59 -04:00
|
|
|
try {
|
|
|
|
LOG.debug('Loading files...', { indexTemplate, README });
|
|
|
|
const template = await fs.readFile(indexTemplate, 'utf8');
|
|
|
|
const markdown = await fs.readFile(README, 'utf8');
|
2018-03-18 09:37:19 -04:00
|
|
|
|
2018-07-21 09:12:59 -04:00
|
|
|
LOG.debug('Merging files...');
|
|
|
|
const $ = cheerio.load(template);
|
|
|
|
$('#md').append(converter.makeHtml(markdown));
|
2018-03-18 09:37:19 -04:00
|
|
|
|
2018-07-21 09:12:59 -04:00
|
|
|
LOG.debug('Writing index.html');
|
|
|
|
await fs.outputFile(indexDestination, $.html(), 'utf8');
|
|
|
|
LOG.debug('DONE 👍');
|
|
|
|
} catch (err) {
|
|
|
|
handleFailure(err);
|
|
|
|
}
|
|
|
|
}
|
2018-03-18 10:01:47 -04:00
|
|
|
|
2018-07-21 09:12:59 -04:00
|
|
|
const bundle = () => {
|
|
|
|
LOG.debug('---');
|
|
|
|
LOG.debug('📦 Bundling with Parcel.js');
|
|
|
|
LOG.debug('---');
|
|
|
|
|
|
|
|
new Parcel(indexDestination, {
|
2018-03-18 10:01:47 -04:00
|
|
|
name: 'build',
|
2018-04-07 08:38:24 -04:00
|
|
|
publicURL: '/',
|
2018-04-22 06:34:38 -04:00
|
|
|
})
|
|
|
|
.bundle()
|
2020-03-08 08:45:52 -04:00
|
|
|
.then(() => {
|
2020-03-15 05:06:38 -04:00
|
|
|
const smStream = new SitemapStream({
|
|
|
|
hostname: 'https://awesome-docker.netlify.com/',
|
|
|
|
});
|
2020-03-08 08:45:52 -04:00
|
|
|
smStream.write({
|
|
|
|
url: '/',
|
|
|
|
changefreq: 'daily',
|
|
|
|
priority: 0.8,
|
|
|
|
lastmodrealtime: true,
|
|
|
|
lastmodfile: 'dist/index.html',
|
|
|
|
});
|
|
|
|
|
|
|
|
smStream.end();
|
|
|
|
return streamToPromise(smStream);
|
|
|
|
})
|
2020-04-13 10:15:18 -04:00
|
|
|
.then((sm) =>
|
2018-06-09 16:59:45 -04:00
|
|
|
// Creates a sitemap object given the input configuration with URLs
|
2018-07-21 09:12:59 -04:00
|
|
|
fs.outputFile(
|
|
|
|
'dist/sitemap.xml',
|
2020-03-08 08:45:52 -04:00
|
|
|
// sm.createSitemap(sitemapOpts).toString(),
|
2020-03-15 05:06:38 -04:00
|
|
|
sm.toString(),
|
2018-07-21 09:12:59 -04:00
|
|
|
),
|
|
|
|
);
|
2018-03-18 10:01:47 -04:00
|
|
|
};
|
2018-03-18 09:37:19 -04:00
|
|
|
|
2018-07-21 09:12:59 -04:00
|
|
|
async function main() {
|
|
|
|
await processIndex();
|
|
|
|
await bundle();
|
|
|
|
}
|
2018-03-18 09:37:19 -04:00
|
|
|
|
|
|
|
main();
|