transfer-webpack-plugin
v0.1.4
Published
transfer files to the build directory
Downloads
14,964
Maintainers
Readme
Transfer Webpack Plugin
Transfer files to the build directory
Getting started
Install the plugin:
npm install --save-dev transfer-webpack-plugin
API
new TransferWebpackPlugin(patterns: array, [basePath: string])
patterns
– array of patterns{ from: 'path', to: 'path' }
,from
– relative tobasePath
or tocontext
of your config (ifbasePath
is not exists),to
– relative to the build directorybasePath
(optional) – directory to be resolved tofrom
parameter
Usage
var TransferWebpackPlugin = require('transfer-webpack-plugin');
module.exports = {
context: path.join(__dirname, 'app'),
plugins: [
new TransferWebpackPlugin([
{ from: 'i18n', to: 'i18n' },
{ from: 'root' }
])
]
};
module.exports = {
plugins: [
new TransferWebpackPlugin([
{ from: 'i18n', to: 'i18n' },
{ from: 'root' }
], path.join(__dirname, 'app'))
]
};