mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-02 05:02:28 +00:00
15 lines
349 B
JavaScript
15 lines
349 B
JavaScript
//Require the K-scaffold that we installed via NPM
|
|
const k = require('@kurohyou/k-scaffold');
|
|
const fs = require("fs");
|
|
|
|
const kOpts = {
|
|
destination: '.',
|
|
testDestination: './__tests__',
|
|
source: './source',
|
|
pugOptions: { "require": require, "fs": fs },
|
|
};
|
|
|
|
if (process.argv[2] === '--watch') {
|
|
kOpts.watch = true;
|
|
}
|
|
k.all(kOpts); |