mirror of https://github.com/webpack/webpack.git
47 lines
779 B
JavaScript
47 lines
779 B
JavaScript
var webpack = require("../../../");
|
|
var fs = require("fs");
|
|
var join = require("path").join;
|
|
|
|
function read(path) {
|
|
return JSON.stringify(fs.readFileSync(join(__dirname, path), "utf8"));
|
|
}
|
|
|
|
module.exports = [
|
|
{
|
|
mode: "production",
|
|
entry: "./index",
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
VALUE: "123"
|
|
})
|
|
]
|
|
},
|
|
|
|
{
|
|
mode: "production",
|
|
entry: "./index",
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
VALUE: "321"
|
|
})
|
|
]
|
|
},
|
|
|
|
{
|
|
mode: "production",
|
|
entry: "./index",
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
VALUE: webpack.DefinePlugin.runtimeValue(() => read("123.txt"), [
|
|
"./123.txt"
|
|
])
|
|
}),
|
|
new webpack.DefinePlugin({
|
|
VALUE: webpack.DefinePlugin.runtimeValue(() => read("321.txt"), [
|
|
"./321.txt"
|
|
])
|
|
})
|
|
]
|
|
}
|
|
];
|