We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for the plugin!
Is it possible to copy all files in the source directory but exclude specific files? I can think of two possible methods:
{ from: ["./src/**/*", "./imgs/**/*"], to: ["./build"], // method 1 ignore: ["*.ts", "*.gif"], // method 2 filter: (filePath) => !filePath.endsWith(".ts") && !filePath.endsWith(".gif"), }
Or users can be allowed to mix the two methods to achieve more fine-grained control.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for the plugin!
Is it possible to copy all files in the source directory but exclude specific files?
I can think of two possible methods:
Or users can be allowed to mix the two methods to achieve more fine-grained control.
The text was updated successfully, but these errors were encountered: