const path = require('path') const fs = require('fs') const projectRoot = path.join(__dirname, '..') const templateFile = path.join( projectRoot, 'bskyweb', 'templates', 'scripts.html', ) const {entrypoints} = require( path.join(projectRoot, 'web-build/asset-manifest.json'), ) console.log(`Found ${entrypoints.length} entrypoints`) console.log(`Writing ${templateFile}`) const outputFile = entrypoints .map(name => { const file = path.basename(name) const ext = path.extname(file) if (ext === '.js') { return `` } if (ext === '.css') { return `` } return '' }) .join('\n') fs.writeFileSync(templateFile, outputFile) function copyFiles(sourceDir, targetDir) { const files = fs.readdirSync(path.join(projectRoot, sourceDir)) files.forEach(file => { const sourcePath = path.join(projectRoot, sourceDir, file) const targetPath = path.join(projectRoot, targetDir, file) fs.copyFileSync(sourcePath, targetPath) console.log(`Copied ${sourcePath} to ${targetPath}`) }) } copyFiles('web-build/static/js', 'bskyweb/static/js') copyFiles('web-build/static/css', 'bskyweb/static/css') copyFiles('web-build/static/media', 'bskyweb/static/media')