webpack-parallel-uglify-plugin icon indicating copy to clipboard operation
webpack-parallel-uglify-plugin copied to clipboard

Can you add a few more examples?

Open yangchongduo opened this issue 8 years ago • 2 comments

Can you add a few more examples?

yangchongduo avatar Feb 22 '17 06:02 yangchongduo

Any specific examples that you're looking for? Would it just be configuration or do you want to see full build examples?

gdborton avatar Jul 28 '17 19:07 gdborton

a full executable example, I dont konw. A executable webpack uglify will be this

new webpack.optimize.UglifyJsPlugin({
        compress: {
          unused: true,
          dead_code: true,
          warnings: false
        },
        mangle: {
          except: ['$', 'exports', 'require']
        },
        output: {
          ascii_only: true
        }
      }
    )

but a executable webpack-parallel-uglify-plugin example ? how to transform form webpack.optimize.UglifyJsPlugin

zzuhan avatar Aug 19 '17 06:08 zzuhan