mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2026-01-12 20:31:21 -08:00
57 lines
2.7 KiB
JavaScript
57 lines
2.7 KiB
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
const { execSync } = require('child_process');
|
|
|
|
const repoFolder = path.join(path.dirname(__filename), '..');
|
|
const folderToServe = path.join(repoFolder, 'public-dist');
|
|
|
|
// cross-env TIDDLYWIKI_PLUGIN_PATH='node_modules/tiddlywiki/plugins/published' TIDDLYWIKI_THEME_PATH='${wikiFolderName}/themes'
|
|
process.env.TIDDLYWIKI_PLUGIN_PATH = `${repoFolder}/plugins`;
|
|
process.env.TIDDLYWIKI_THEME_PATH = `${repoFolder}/themes`;
|
|
|
|
const execAndLog = (command, options) => console.log(String(execSync(command, options)));
|
|
|
|
module.exports = function build() {
|
|
// npm run build:prepare
|
|
execAndLog(`rm -rf ${folderToServe}`);
|
|
// npm run build:public
|
|
execAndLog(`cp -r ${repoFolder}/public/ ${folderToServe}`, { cwd: repoFolder });
|
|
// try copy some static assets, don't cause error if some of them been removed by the user
|
|
try {
|
|
// npm run build:public
|
|
execAndLog(`cp ${repoFolder}/tiddlers/favicon.ico ${folderToServe}/favicon.ico`, { cwd: repoFolder });
|
|
execAndLog(`cp ${repoFolder}/tiddlers/TiddlyWikiIconWhite.png ${folderToServe}/TiddlyWikiIconWhite.png`, {
|
|
cwd: repoFolder,
|
|
});
|
|
execAndLog(`cp ${repoFolder}/tiddlers/TiddlyWikiIconBlack.png ${folderToServe}/TiddlyWikiIconBlack.png`, {
|
|
cwd: repoFolder,
|
|
});
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
// npm run build:nodejs2html
|
|
execAndLog(`tiddlywiki ${repoFolder} --build externalimages`, { cwd: repoFolder });
|
|
execAndLog(`tiddlywiki ${repoFolder} --build externaljs`, { cwd: repoFolder });
|
|
// npm run build:sitemap
|
|
execAndLog(
|
|
`tiddlywiki . --rendertiddler sitemap sitemap.xml text/plain && mv ${repoFolder}/output/sitemap.xml ${folderToServe}/sitemap.xml`,
|
|
{ cwd: repoFolder }
|
|
);
|
|
// npm run build:minifyHTML
|
|
const htmlOutputPath = `${folderToServe}/index.html`;
|
|
execAndLog(
|
|
`html-minifier-terser -c ./html-minifier-terser.config.json -o ${htmlOutputPath} ${repoFolder}/output/index.html`,
|
|
{ cwd: repoFolder }
|
|
);
|
|
// build dll.js and config tw to load it
|
|
// original filename contains invalid char, will cause static server unable to load it
|
|
const htmlContent = fs.readFileSync(htmlOutputPath, 'utf-8');
|
|
fs.writeFileSync(htmlOutputPath, htmlContent.replace('%24%3A%2Fcore%2Ftemplates%2Ftiddlywiki5.js', 'tiddlywiki5.js'));
|
|
execAndLog(`mv ${repoFolder}/output/tiddlywiki5.js ${folderToServe}/tiddlywiki5.js`, { cwd: repoFolder });
|
|
// npm run build:precache
|
|
execAndLog(`workbox injectManifest workbox-config.js`, { cwd: repoFolder });
|
|
// npm run build:clean
|
|
// execAndLog(`rm -r ${repoFolder}/output`, { cwd: repoFolder });
|
|
// npm run build:pluginLibrary
|
|
execAndLog(`tiddlywiki ${repoFolder} --output ${folderToServe}/library --build library`, { cwd: repoFolder });
|
|
};
|