aboutsummaryrefslogtreecommitdiff
path: root/lib/generators/txt.js
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-02-14 16:58:56 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-02-14 16:58:56 +0100
commit6cd62e795e3716aa0cbd2d1ff8c1b3a345803563 (patch)
treef35cfd157529d890d8d5e8e4280c9d44d77a5e01 /lib/generators/txt.js
parent02f408c24d82d1fac4e55c146c4fa57cbdcdeca4 (diff)
Use modules, use XDG dirs
Diffstat (limited to 'lib/generators/txt.js')
-rw-r--r--lib/generators/txt.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/generators/txt.js b/lib/generators/txt.js
index af5ec9c..dddcbaf 100644
--- a/lib/generators/txt.js
+++ b/lib/generators/txt.js
@@ -1,9 +1,9 @@
'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'),
@@ -19,7 +19,7 @@ const internals = {
* @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);
@@ -29,10 +29,9 @@ module.exports = async function TXTGenerator(source, target, posts) {
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);
};
-