Skip to content

Commit fdce41c

Browse files
committed
feat: Add new watch option to cp command
1 parent 8827b89 commit fdce41c

File tree

1 file changed

+26
-21
lines changed

1 file changed

+26
-21
lines changed

src/commands/cp.ts

+26-21
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,47 @@
11
import fs from 'node:fs';
22
import path from 'node:path';
3-
import { stringToRegex } from '../utils/regex';
3+
import chokidar from 'chokidar';
4+
import { getFiles } from '../utils/files';
45

56
/**
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
910
* @param options Copy options
1011
*/
1112
function cp(src: string, dest: string, options: {
1213
/**
13-
* Copy directories recursively
14+
* Copy paths recursively
1415
*/
15-
recursive?: boolean;
16+
recursive: boolean;
1617
/**
17-
* Overwrite existing files
18+
* Overwrite existing paths
1819
*/
19-
force?: boolean;
20+
force: boolean;
2021
/**
21-
* Ignore file(s) or directory
22+
* Ignore paths that match regex
2223
*/
2324
ignore?: string;
25+
/**
26+
* Start watch mode
27+
*/
28+
watch: boolean;
2429
}) {
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(/^.+?\//, '')), {
3733
mode: fs.constants.COPYFILE_FICLONE,
3834
force: options.force ?? false,
3935
});
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);
4045
});
4146
}
4247

0 commit comments

Comments
 (0)