mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 11:42:29 +00:00
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
14 lines
304 B
JavaScript
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...");
|