storybook/code/renderers/svelte/scripts/copy-unbundled-to-dist.ts
ziebam a09abbc1c8 Remove fs-extra from renderers/svelte
VS Code complains about not being able to find Node types, but
building the package works. Need to investigate.
2024-09-14 18:33:50 +02:00

25 lines
593 B
TypeScript

import { cp } from 'node:fs/promises';
import { join } from 'path';
const src = join(__dirname, '..', 'src');
const dist = join(__dirname, '..', 'dist');
// relative to src directory
const PATHS_TO_COPY = ['createSvelte5Props.svelte.js', 'components'];
const run = async () => {
console.log('Copying unbundled files to dist...');
await Promise.all(
PATHS_TO_COPY.map((pathToCopy) =>
cp(join(src, pathToCopy), join(dist, pathToCopy), { recursive: true, force: true })
)
);
console.log('Done!');
};
run().catch((e) => {
console.error(e);
process.exitCode = 1;
});