Files
roll20-character-sheets/FHTAGN/compile-pug.js
T
Jana Deppe 518872a870 Created sheet for FHTAGN RPG fhtagn-rpg.de (#6938)
Created sheet for FHTAGN RPG fhtagn-rpg.de

created markup and styles for first page

created markup and styles for first page

version 0.1.0

bugfixing and thumbnail
2020-07-13 10:52:51 -05:00

14 lines
304 B
JavaScript

const fs = require("fs");
const pug = require("pug");
const data = require("./src/data.json");
const locals = {
env: process.env.NODE_ENV,
...data,
};
// renderFile
var html = pug.renderFile("./src/index.pug", locals);
fs.writeFileSync("./index.html", html);
console.log("Compiled .pug files...");