forked from Happy-Coding-Clans/vue-easytable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.main.config.js
68 lines (59 loc) · 1.75 KB
/
webpack.main.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
编译输出引用的入口文件 main.js
*/
const path = require("path");
const webpack = require("webpack");
const VueLoaderPlugin = require("vue-loader/lib/plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const ProgressBarPlugin = require("progress-bar-webpack-plugin");
const config = require("./config");
const { libraryName } = require("./common");
module.exports = function (env) {
return {
mode: "production",
entry: {
index: ["./packages/index.js"],
},
output: {
path: path.join(__dirname, "../libs"),
filename: "main.js",
chunkFilename: "[id].js",
libraryExport: "default",
library: libraryName,
/*
commonjs 分配给 exports 对象;
commonjs2 分配给 module.exports 对象;
*/
libraryTarget: "commonjs2",
},
module: {
rules: [
// babel-loader
{
test: /\.(js|jsx)$/,
use: "babel-loader",
exclude: /node_modules/,
},
// vue loader
{
test: /\.vue$/,
use: [
{
loader: "vue-loader",
},
],
},
],
},
optimization: {
minimize: true,
},
resolve: {
extensions: [".js", ".jsx", ".vue"],
modules: [path.resolve("./node_modules")],
alias: config.alias,
},
externals: config.externals,
plugins: [new ProgressBarPlugin(), new VueLoaderPlugin()],
};
};