-'use strict';
-
-const { template, templateSettings } = require('dot');
-const { readFile, writeFile } = require('fs/promises');
-const { join } = require('path');
-const { debuglog } = require('util');
+import Dot from 'dot';
+import { readFile, writeFile } from 'fs/promises';
+import { join } from 'path';
+import { debuglog } from 'util';
const internals = {
debuglog: debuglog('blog'),
* @param {string} target the target directory
* @param {Array.<Blog.tPost>} posts the list of posts
*/
-module.exports = async function TXTGenerator(source, target, posts) {
+export default async function TXTGenerator(source, target, posts) {
internals.debuglog('Generating TXT');
const textTarget = join(target, internals.kTextName);
const textTemplate = await readFile(textLocation, { encoding: 'utf8' });
internals.debuglog('Writing TXT');
- const text = template(textTemplate, {
- ...templateSettings,
+ const text = Dot.template(textTemplate, {
+ ...Dot.templateSettings,
strip: false
})({ posts });
await writeFile(textTarget, text);
-};
-
+}