1.0.5 • Published 7 years ago

webpack-deploy-after-build v1.0.5

Weekly downloads
28
License
GPL-3.0
Repository
github
Last release
7 years ago

webpack-deploy-after-build

Copy the dist folder to any other location after build.

Usage

WebPackDeployAfterBuild({ from: "Directory", to: "Directory", clearDestDir: true })

Install

npm install --save webpack-deploy-after-build

Include in webpack.config.js

var WebPackDeployAfterBuild = require('webpack-deploy-after-build');

Add plugin webpack.config.js

var path = require('path')
var webpack = require('webpack')
var WebPackDeployAfterBuild = require('webpack-deploy-after-build');

module.exports = {

};

if (process.env.NODE_ENV === 'production') {
    module.exports.devtool = '#source-map'
    // http://vue-loader.vuejs.org/en/workflow/production.html
    module.exports.plugins = (module.exports.plugins || []).concat([
        new webpack.DefinePlugin({
            'process.env': {
                NODE_ENV: '"production"'
            }
        }),
        new webpack.optimize.UglifyJsPlugin({
            sourceMap: true,
            compress: {
                warnings: false
            }
        }),
        new webpack.LoaderOptionsPlugin({
            minimize: true
        }),
        new WebPackDeployAfterBuild({
            from: path.resolve(__dirname, './dist'),
            to: '~/Git/website/vue/'
        })
    ])
}
1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago