Skip to content

Commit 41deaed

Browse files
authored
docs: fix some typos in main readme documentation
1 parent 275d6d6 commit 41deaed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
Copy files easily via JavaScript or the CLI, it uses [tinyglobby](https://www.npmjs.com/package/tinyglobby) internally for glob patterns and [cli-nano](https://www.npmjs.com/package/cli-nano) for the CLI.
1414

15-
The library is very similar to the [copyfiles](https://www.npmjs.com/package/copyfiles) package, at least from the outside; however its internal is very different. It uses more native NodeJS code and a lot fewer dependencies (3 instead of 7), which makes this package a lot smaller compared to the original `copyfiles` project (1/4 of its size). The options are nearly the same (except for `--soft`, which is not implemented), new options were also added in this project here (mainly the rename and dry-run features, see below).
15+
The library is very similar to the [copyfiles](https://www.npmjs.com/package/copyfiles) package, at least from the outside; however its internal is quite different. It uses more native NodeJS code and a lot less dependencies (just 3 instead of 7), which makes this package a lot smaller compared to the original `copyfiles` project (1/4 of its size). The options are nearly the same (except for `--soft`, which is not implemented), there's also some new options that were added in this project (mainly the rename and dry-run features, see below).
1616

17-
> Note: there is 1 noticeable difference with `copyfiles`, any options must be provided as a suffix after the source/target directories command (the original `copyfiles` project has them as prefix).<br>
17+
> Note: there is 1 noticeable difference with `copyfiles`, all CLI options must be provided as a suffix after the source/target directories command (the original `copyfiles` project has them as prefix).<br>
1818
> This mean calling: `copyfiles source target [options]` instead of `copyfiles [options] source target`
1919
2020
### Install
@@ -47,7 +47,7 @@ Positionals:
4747
```
4848

4949
> [!NOTE]
50-
> Options **must** be provided after the command directories as suffix (the original project has them as prefix)
50+
> Options **must** be provided after the command directories as suffix (the original project references them as prefix)
5151
5252
copy some files, give it a bunch of arguments, (which can include globs), the last one
5353
is the out directory (which it will create if necessary). Note: on Windows globs must be **double quoted**, everybody else can quote however they please.
@@ -109,7 +109,7 @@ copyfiles "**/*.test.js" -f "./foo/**/*.js" out -e
109109
```
110110

111111
> [!NOTE]
112-
> By default the `.git/` and `node_modules/` directories will be excluded.
112+
> By default the `.git/` and `node_modules/` directories will be excluded when using globs.
113113
114114
Other options include
115115

0 commit comments

Comments
 (0)