mirror of https://github.com/webpack/webpack.git
45 lines
895 B
JavaScript
45 lines
895 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
module: {
|
|
generator: {
|
|
asset: {
|
|
filename: "assets/[name][ext]"
|
|
}
|
|
},
|
|
rules: [
|
|
{
|
|
oneOf: [
|
|
{
|
|
test: /\.css\.js$/,
|
|
use: "./loader",
|
|
type: "asset/source"
|
|
},
|
|
{ test: /\.(js|jpg|png)$/ },
|
|
{ type: "asset/resource" }
|
|
]
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
(compiler) =>
|
|
compiler.hooks.done.tap("test case", (stats) => {
|
|
const png = stats.compilation.getAsset("assets/file.png");
|
|
const jpg = stats.compilation.getAsset("assets/file.jpg");
|
|
if (png) {
|
|
expect(jpg).toBeUndefined();
|
|
expect(png).toHaveProperty(
|
|
"info",
|
|
expect.objectContaining({ sourceFilename: "file.png" })
|
|
);
|
|
} else {
|
|
expect(jpg).toHaveProperty(
|
|
"info",
|
|
expect.objectContaining({ sourceFilename: "file.jpg" })
|
|
);
|
|
}
|
|
})
|
|
]
|
|
};
|