You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a file starting with a dot (.) in the root and I am trying to copy it to the output folder dist. I have gone through all the closed issues #18, #22, #24, #36, and #52.
Note:
I am executing this from the package.json script.
This executes in a docker container.
My dot file is in the root directory.
I am also combining other static files to be copied, for example, .json.
I have also tried the below.
copyfiles -a -u 1 src/**/*.json dist => does not copy the dot file, but the JSON file is copied. copyfiles -a -u 1 ./ src/**/*.json dist => does not copy the dot file, but the JSON file is copied. copyfiles -a -u 1 .env src/**/*.json dist => Error: cant go up that far copyfiles -a -u 1 ./* src/**/*.json dist => Error: cant go up that far copyfiles -a -u 1 \"./*\" src/**/*.json dist => Error: cant go up that far copyfiles -a -u 1 \"./**/*\" src/**/*.json dist => Error: cant go up that far copyfiles -a -u 1 \"./**/*\" \"src/**/*.json\" dist => Error: cant go up that far copyfiles -a -u 1 \"**/*\" \"src/**/*.json\" dist => Error: cant go up that far copyfiles -a -u 1 \"./*.file\" \"src/**/*.json\" dist => Error: cant go up that far
I am not sure what I am missing.
The text was updated successfully, but these errors were encountered:
Hi,
I have a file starting with a dot (
.
) in the root and I am trying to copy it to the output folderdist
. I have gone through all the closed issues #18, #22, #24, #36, and #52.Note:
.json
.I have also tried the below.
copyfiles -a -u 1 src/**/*.json dist
=> does not copy the dot file, but the JSON file is copied.copyfiles -a -u 1 ./ src/**/*.json dist
=> does not copy the dot file, but the JSON file is copied.copyfiles -a -u 1 .env src/**/*.json dist
=> Error: cant go up that farcopyfiles -a -u 1 ./* src/**/*.json dist
=> Error: cant go up that farcopyfiles -a -u 1 \"./*\" src/**/*.json dist
=> Error: cant go up that farcopyfiles -a -u 1 \"./**/*\" src/**/*.json dist
=> Error: cant go up that farcopyfiles -a -u 1 \"./**/*\" \"src/**/*.json\" dist
=> Error: cant go up that farcopyfiles -a -u 1 \"**/*\" \"src/**/*.json\" dist
=> Error: cant go up that farcopyfiles -a -u 1 \"./*.file\" \"src/**/*.json\" dist
=> Error: cant go up that farI am not sure what I am missing.
The text was updated successfully, but these errors were encountered: