nunta/scripts/build-pug.js
David Miller 591ec679dd update scripts with upath
now using upath within build scripts for better compatibility
2021-03-29 19:45:48 -04:00

19 lines
472 B
JavaScript

'use strict';
const upath = require('upath');
const sh = require('shelljs');
const renderPug = require('./render-pug');
const srcPath = upath.resolve(upath.dirname(__filename), '../src');
sh.find(srcPath).forEach(_processFile);
function _processFile(filePath) {
if (
filePath.match(/\.pug$/)
&& !filePath.match(/include/)
&& !filePath.match(/mixin/)
&& !filePath.match(/\/pug\/layouts\//)
) {
renderPug(filePath);
}
}