Server IP : 2a02:4780:11:1361:0:bf7:7935:10 / Your IP : 3.144.85.134 Web Server : LiteSpeed System : Linux in-mum-web1261.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u200767797 ( 200767797) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u200767797/domains/drusonpharma.com/public_html/assets/../admin/scripts/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
'use strict'; const fs = require('fs'); const upath = require('upath'); const pug = require('pug'); const sh = require('shelljs'); const prettier = require('prettier'); module.exports = function renderPug(filePath) { const destPath = filePath.replace(/src\/pug\/\pages/, 'dist').replace(/\.pug$/, '.html'); const srcPath = upath.resolve(upath.dirname(__filename), '../src'); console.log(`### INFO: Rendering ${filePath} to ${destPath}`); const html = pug.renderFile(filePath, { doctype: 'html', filename: filePath, basedir: srcPath }); const destPathDirname = upath.dirname(destPath); if (!sh.test('-e', destPathDirname)) { sh.mkdir('-p', destPathDirname); } const prettified = prettier.format(html, { printWidth: 1000, tabWidth: 4, singleQuote: true, proseWrap: 'preserve', endOfLine: 'lf', parser: 'html', htmlWhitespaceSensitivity: 'ignore' }); fs.writeFileSync(destPath, prettified); };