Skip to content

Commit 08615a2

Browse files
committed
change description when no static exports found
1 parent 859b8cd commit 08615a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/FunctionModuleTemplatePlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class FunctionModuleTemplatePlugin {
2828
if(Array.isArray(module.providedExports))
2929
source.add("/* exports provided: " + module.providedExports.join(", ") + " */\n");
3030
else if(module.providedExports)
31-
source.add("/* unknown exports provided */\n");
31+
source.add("/* no static exports found */\n");
3232
if(Array.isArray(module.usedExports))
3333
source.add("/* exports used: " + module.usedExports.join(", ") + " */\n");
3434
else if(module.usedExports)

0 commit comments

Comments
 (0)