mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
VS Code complains about not being able to find Node types, but building the package works. Need to investigate.
25 lines
593 B
TypeScript
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;
|
|
});
|