mirror of https://github.com/webpack/webpack.git
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
|
module.exports = options => {
|
||
|
if (options.cache && options.cache.type === "filesystem") {
|
||
|
return [/Pack got invalid because of write to/];
|
||
|
}
|
||
|
|
||
|
return [];
|
||
|
};
|