import fs from 'node:fs'; import path from 'node:path'; /** @param {string} dir */ export function mkdirp(dir) { try { fs.mkdirSync(dir, { recursive: true }); } catch (/** @type {any} */ e) { if (e.code === 'EEXIST') return; throw e; } } /** @param {string} path */ export function rimraf(path) { fs.rmSync(path, { force: true, recursive: true }); } /** @param {string} str */ export function posixify(str) { return str.replace(/\\/g, '/'); } /** * Get a list of all files in a directory * @param {string} cwd - the directory to walk * @param {boolean} [dirs] - whether to include directories in the result */ export function walk(cwd, dirs = false) { /** @type {string[]} */ const all_files = []; /** @param {string} dir */ function walk_dir(dir) { const files = fs.readdirSync(path.join(cwd, dir)); for (const file of files) { const joined = path.join(dir, file); const stats = fs.statSync(path.join(cwd, joined)); if (stats.isDirectory()) { if (dirs) all_files.push(joined); walk_dir(joined); } else { all_files.push(joined); } } } return (walk_dir(''), all_files); } /** * @param {string} source * @param {string} target * @param {{ * filter?: (basename: string) => boolean; * replace?: Record; * }} opts */ export function copy(source, target, opts = {}) { if (!fs.existsSync(source)) return []; /** @type {string[]} */ const files = []; const prefix = posixify(target) + '/'; const regex = opts.replace ? new RegExp(`\\b(${Object.keys(opts.replace).join('|')})\\b`, 'g') : null; /** * @param {string} from * @param {string} to */ function go(from, to) { if (opts.filter && !opts.filter(path.basename(from))) return; const stats = fs.statSync(from); if (stats.isDirectory()) { fs.readdirSync(from).forEach((file) => { go(path.join(from, file), path.join(to, file)); }); } else { mkdirp(path.dirname(to)); if (opts.replace) { const data = fs.readFileSync(from, 'utf-8'); fs.writeFileSync( to, data.replace( /** @type {RegExp} */ (regex), (_match, key) => /** @type {Record} */ (opts.replace)[key] ) ); } else { fs.copyFileSync(from, to); } files.push(to === target ? posixify(path.basename(to)) : posixify(to).replace(prefix, '')); } } go(source, target); return files; }