|
1 | 1 | import fs from 'node:fs';
|
2 | 2 | import path from 'node:path';
|
3 |
| -import { stringToRegex } from '../utils/regex'; |
| 3 | +import chokidar from 'chokidar'; |
| 4 | +import { getFiles } from '../utils/files'; |
4 | 5 |
|
5 | 6 | /**
|
6 |
| - * Copy files and directories |
7 |
| - * @param src Source file or directory |
8 |
| - * @param dest Destination directory |
| 7 | + * Copy path contents to another destination |
| 8 | + * @param src Source path |
| 9 | + * @param dest Destination path |
9 | 10 | * @param options Copy options
|
10 | 11 | */
|
11 | 12 | function cp(src: string, dest: string, options: {
|
12 | 13 | /**
|
13 |
| - * Copy directories recursively |
| 14 | + * Copy paths recursively |
14 | 15 | */
|
15 |
| - recursive?: boolean; |
| 16 | + recursive: boolean; |
16 | 17 | /**
|
17 |
| - * Overwrite existing files |
| 18 | + * Overwrite existing paths |
18 | 19 | */
|
19 |
| - force?: boolean; |
| 20 | + force: boolean; |
20 | 21 | /**
|
21 |
| - * Ignore file(s) or directory |
| 22 | + * Ignore paths that match regex |
22 | 23 | */
|
23 | 24 | ignore?: string;
|
| 25 | + /** |
| 26 | + * Start watch mode |
| 27 | + */ |
| 28 | + watch: boolean; |
24 | 29 | }) {
|
25 |
| - src = path.normalize(src); |
26 |
| - dest = path.normalize(dest); |
27 |
| - const ignoreRegex = stringToRegex(options.ignore ?? '/$^/'); |
28 |
| - |
29 |
| - fs.readdirSync(src, { |
30 |
| - recursive: options.recursive ?? false, |
31 |
| - withFileTypes: true, |
32 |
| - }).filter((entry) => { |
33 |
| - return entry.isFile() && !ignoreRegex.test(entry.name); |
34 |
| - }).forEach((entry) => { |
35 |
| - const filePath = path.join(entry.path, entry.name); |
36 |
| - fs.cpSync(filePath, path.join(dest, filePath), { |
| 30 | + const cpFn = (src: string) => { |
| 31 | + // Replace the source directory with the destination directory |
| 32 | + fs.cpSync(src, path.join(dest, src.replace(/^.+?\//, '')), { |
37 | 33 | mode: fs.constants.COPYFILE_FICLONE,
|
38 | 34 | force: options.force ?? false,
|
39 | 35 | });
|
| 36 | + }; |
| 37 | + |
| 38 | + getFiles(src, { |
| 39 | + recursive: options.recursive, |
| 40 | + ignore: options.ignore, |
| 41 | + }).forEach((file) => { |
| 42 | + cpFn(file); |
| 43 | + options.watch && chokidar.watch(file) |
| 44 | + .on('change', cpFn); |
40 | 45 | });
|
41 | 46 | }
|
42 | 47 |
|
|
0 commit comments