mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
import { compilePack } from '@foundryvtt/foundryvtt-cli';
|
|
import readline from 'node:readline/promises';
|
|
import { promises as fs } from 'fs';
|
|
|
|
const MODULE_ID = process.cwd();
|
|
const yaml = false;
|
|
|
|
const rl = readline.createInterface({
|
|
input: process.stdin,
|
|
output: process.stdout
|
|
});
|
|
|
|
const answer = await rl.question(
|
|
'You are about to overwrite your current database with the saved packs/json. Write "Overwrite" if you are sure. ',
|
|
function (answer) {
|
|
rl.close();
|
|
return answer;
|
|
}
|
|
);
|
|
|
|
if (answer.toLowerCase() === 'overwrite') {
|
|
await pullToLDB();
|
|
} else {
|
|
console.log('Canceled');
|
|
}
|
|
|
|
process.exit();
|
|
|
|
async function pullToLDB() {
|
|
const packs = await deepGetDirectories('./packs');
|
|
console.log(packs);
|
|
for (const pack of packs) {
|
|
if (pack === '.gitattributes') continue;
|
|
console.log('Packing ' + pack);
|
|
await compilePack(`${MODULE_ID}/src/${pack}`, `${MODULE_ID}/${pack}`, { yaml });
|
|
}
|
|
|
|
async function deepGetDirectories(distPath) {
|
|
const dirr = await fs.readdir('src/' + distPath);
|
|
const dirrsWithSub = [];
|
|
for (let file of dirr) {
|
|
const stat = await fs.stat('src/' + distPath + '/' + file);
|
|
if (stat.isDirectory()) {
|
|
const deeper = await deepGetDirectories(distPath + '/' + file);
|
|
if (deeper.length > 0) {
|
|
dirrsWithSub.push(...deeper);
|
|
} else {
|
|
dirrsWithSub.push(distPath + '/' + file);
|
|
}
|
|
}
|
|
}
|
|
|
|
return dirrsWithSub;
|
|
}
|
|
}
|