Skip to content

Commit

Permalink
feat: improve warning of conflict order
Browse files Browse the repository at this point in the history
  • Loading branch information
laysent committed Nov 21, 2019
1 parent 50434b5 commit 045441e
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 15 deletions.
42 changes: 27 additions & 15 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,7 @@ class CssModule extends webpack.Module {
}

class CssModuleFactory {
create(
{
dependencies: [dependency],
},
callback
) {
create({ dependencies: [dependency] }, callback) {
callback(null, new CssModule(dependency));
}
}
Expand Down Expand Up @@ -416,6 +411,9 @@ class MiniCssExtractPlugin {
if (typeof chunkGroup.getModuleIndex2 === 'function') {
// Store dependencies for modules
const moduleDependencies = new Map(modules.map((m) => [m, new Set()]));
const moduleDependenciesReasons = new Map(
modules.map((m) => [m, new Map()])
);

// Get ordered list of modules per chunk group
// This loop also gathers dependencies from the ordered lists
Expand All @@ -435,9 +433,14 @@ class MiniCssExtractPlugin {

for (let i = 0; i < sortedModules.length; i++) {
const set = moduleDependencies.get(sortedModules[i]);
const reasons = moduleDependenciesReasons.get(sortedModules[i]);

for (let j = i + 1; j < sortedModules.length; j++) {
set.add(sortedModules[j]);
const module = sortedModules[j];
set.add(module);
const reason = reasons.get(module) || new Set();
reason.add(cg);
reasons.set(module, reason);
}
}

Expand All @@ -453,6 +456,7 @@ class MiniCssExtractPlugin {
let success = false;
let bestMatch;
let bestMatchDeps;
let bestMatchDepsReasons;

// get first module where dependencies are fulfilled
for (const list of modulesByChunkGroup) {
Expand All @@ -472,6 +476,7 @@ class MiniCssExtractPlugin {
if (!bestMatchDeps || bestMatchDeps.length > failedDeps.length) {
bestMatch = list;
bestMatchDeps = failedDeps;
bestMatchDepsReasons = moduleDependenciesReasons.get(module);
}

if (failedDeps.length === 0) {
Expand All @@ -491,14 +496,21 @@ class MiniCssExtractPlugin {
if (!this.options.ignoreOrder) {
compilation.warnings.push(
new Error(
`chunk ${chunk.name || chunk.id} [${pluginName}]\n` +
'Conflicting order between:\n' +
` * ${fallbackModule.readableIdentifier(
requestShortener
)}\n` +
`${bestMatchDeps
.map((m) => ` * ${m.readableIdentifier(requestShortener)}`)
.join('\n')}`
[
`chunk ${chunk.name || chunk.id} [${pluginName}]`,
'Following module has been added:',
` * ${fallbackModule.readableIdentifier(requestShortener)}`,
"while this module as dependencies that haven't been added before:",
...bestMatchDeps.map((m) =>
[
` * ${m.readableIdentifier(requestShortener)}`,
`(used previous to added module in chunk ${Array.from(
bestMatchDepsReasons.get(m),
(cg) => cg.name
).join(',')})`,
].join(' ')
),
].join('\n')
)
);
}
Expand Down
14 changes: 14 additions & 0 deletions test/TestCases.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ function compareDirectory(actual, expected) {
}
}

function compareWarning(actual, expectedFile) {
if (!fs.existsSync(expectedFile)) return;

const expected = require(expectedFile); // eslint-disable-line global-require,import/no-dynamic-require
expect(actual).toBe(expected);
}

describe('TestCases', () => {
const casesDirectory = path.resolve(__dirname, 'cases');
const outputDirectory = path.resolve(__dirname, 'js');
Expand Down Expand Up @@ -93,6 +100,13 @@ describe('TestCases', () => {

compareDirectory(outputDirectoryForCase, expectedDirectory);

const expectedWarning = path.resolve(directoryForCase, 'warnings.js');
const actualWarning = stats.toString({
all: false,
warnings: true,
});
compareWarning(actualWarning, expectedWarning);

done();
});
}, 10000);
Expand Down
10 changes: 10 additions & 0 deletions test/cases/ignoreOrderFalse/warnings.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const cssLoaderPath = require.resolve('css-loader').replace(/\\/g, '/');

module.exports = [
'',
'WARNING in chunk styles [mini-css-extract-plugin]',
'Following module has been added:',
` * css ${cssLoaderPath}!./e2.css`,
"while this module as dependencies that haven't been added before:",
` * css ${cssLoaderPath}!./e1.css (used previous to added module in chunk entry2)`,
].join('\n');

0 comments on commit 045441e

Please sign in to comment.