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
This allows creating simpler and more effective globs.
One simple example is given below.
Example;
Assuming one wants to copy all files at root to a build folder, a simple "*" will not work.
The following will copy the current project to the build folder, which itself will do the same (etc etc), each time coppying itself. (no clue what the limit is)
dub.json:
...
"copyFiles": ["*"],
"targetPath": "build",
Solution eg.: !(dub.json)
The text was updated successfully, but these errors were encountered:
Add extended globbing to the
copyFiles
parameter.This allows creating simpler and more effective globs.
One simple example is given below.
Example;
Assuming one wants to copy all files at root to a build folder, a simple "*" will not work.
The following will copy the current project to the build folder, which itself will do the same (etc etc), each time coppying itself. (no clue what the limit is)
dub.json:
Solution eg.:
!(dub.json)
The text was updated successfully, but these errors were encountered: