webpack/test/watchCases/cache/loader-import-module-progress/webpack.config.js

46 lines
940 B
JavaScript

"use strict";
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
cache: {
type: "filesystem"
},
module: {
rules: [
{
test: /\.generate-json\.js$/,
use: "./loader",
type: "json"
}
]
},
plugins: [
new webpack.ProgressPlugin(() => {}),
{
apply(compiler) {
compiler.hooks.done.tapPromise("CacheTest", async () => {
const cache = compiler
.getCache("ProgressPlugin")
.getItemCache("counts", null);
const data = await cache.getPromise();
if (data.modulesCount !== 3) {
throw new Error(
`Wrong cached value of \`ProgressPlugin.modulesCount\` - ${data.modulesCount}, expect 3`
);
}
if (data.dependenciesCount !== 3) {
throw new Error(
`Wrong cached value of \`ProgressPlugin.dependenciesCount\` - ${data.dependenciesCount}, expect 3`
);
}
});
}
}
]
};