Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add to UNUSED_EXTERNAL_IMPORT warning information about the origin of the problem #4054

Merged
merged 5 commits into from Apr 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 15 additions & 2 deletions src/ExternalModule.ts
Expand Up @@ -110,11 +110,24 @@ export default class ExternalModule {
.map(name => `'${name}'`)
.join(', ')} and '${unused.slice(-1)}' are`;

const importersSet = new Set<string>();
for (const name of unused) {
const {importers, dynamicImporters} = this.declarations[name].module;

if (Array.isArray(importers)) importers.forEach(v => importersSet.add(v));
if (Array.isArray(dynamicImporters)) dynamicImporters.forEach(v => importersSet.add(v));
}

const importersArray = Array.from(importersSet);

const importerList = ' in' + importersArray.map(s => `\n\t${s};`);

this.options.onwarn({
code: 'UNUSED_EXTERNAL_IMPORT',
message: `${names} imported from external module '${this.id}' but never used`,
message: `${names} imported from external module '${this.id}' but never used${importerList}`,
names: unused,
source: this.id
source: this.id,
sources: importersArray
Copy link
Contributor Author

@cawa-93 cawa-93 Apr 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure how appropriate to use sources key. I did not find any description of the properties of the RollupWarning interface.

export interface RollupWarning extends RollupLogProps {
chunkName?: string;
cycle?: string[];
exporter?: string;
exportName?: string;
guess?: string;
importer?: string;
missing?: string;
modules?: string[];
names?: string[];
reexporter?: string;
source?: string;
sources?: string[];
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at the other usages, sources should be reasonable.

});
}
}
7 changes: 6 additions & 1 deletion test/function/samples/unused-import/_config.js
@@ -1,3 +1,5 @@
const path = require('path');

module.exports = {
description: 'warns on unused imports ([#595])',
options: {
Expand All @@ -13,7 +15,10 @@ module.exports = {
code: 'UNUSED_EXTERNAL_IMPORT',
source: 'external',
names: ['notused', 'neverused'],
message: `'notused' and 'neverused' are imported from external module 'external' but never used`
message: `'notused' and 'neverused' are imported from external module 'external' but never used in\n\t${path.resolve(__dirname, './main.js')};`,
sources: [
path.resolve(__dirname, './main.js')
]
}
]
};