mirror of https://github.com/webpack/webpack.git
16 lines
298 B
JavaScript
16 lines
298 B
JavaScript
var rootPath = "../../../../";
|
|
var webpack = require(rootPath);
|
|
var path = require("path");
|
|
|
|
module.exports = (env, { testPath }) => ({
|
|
plugins: [
|
|
new webpack.debug.ProfilingPlugin({
|
|
outPath: path.join(testPath, "events.json")
|
|
})
|
|
],
|
|
node: {
|
|
__dirname: false,
|
|
__filename: false
|
|
}
|
|
});
|