copy-webpack
v5.0.4
Published
A simple `copy-webpack-plugin`
Readme
copy-webpack
A simple copy-webpack-plugin.
Installation
npm install copy-webpack --save-devUsage
// example: webpack.config.mjs
import { CopyWebpack } from 'copy-webpack';
export default {
plugins: [new CopyWebpack('static')]
};Options
Glob or path from where we copy files.
string object [string|object]
- new CopyWebpackPlugin({
- patterns: [
- {
- from: 'static',
- globOptions: {
- dot: true,
- ignore: ['.gitkeep']
- }
- }
- ]
- });
+ new CopyWebpack('static');- new CopyWebpackPlugin({
- patterns: [
- {
- from: 'extra',
- noErrorOnMissing: true,
- globOptions: {
- dot: true,
- ignore: ['.gitkeep']
- }
- }
- ]
- });
+ new CopyWebpack([
+ {
+ from: 'extra',
+ noErrorOnMissing: true
+ }
+ ]);