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
new CopyWebpackPlugin([ { from: 'file1' }, { from: 'file2' }, { from: 'dir/' } ])
new CopyWebpackPlugin([ { from: '{file1,file2,dir/}' } ])
The current error:
ERROR in [copy-webpack-plugin] unable to locate './{file1,file2}' at '/{file1,file2}'
I've already tried the glob option, but it does not work as well #87
The text was updated successfully, but these errors were encountered:
This is a bug. Here's a workaround:
new CopyWebpackPlugin([ { from: '{file1,file2,dir/}', fromType: 'glob' } ])
Sorry, something went wrong.
Added non-wildcard glob support
e6ce1b5
Resolves: #88
7cc31cc
feat: Added non-wildcard glob support
405d1ec
No branches or pull requests
Actual
Expected
The current error:
I've already tried the glob option, but it does not work as well #87
The text was updated successfully, but these errors were encountered: