Skip to content

Commit

Permalink
change description when no static exports found
Browse files Browse the repository at this point in the history
  • Loading branch information
marzelin committed May 23, 2017
1 parent 859b8cd commit 08615a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/FunctionModuleTemplatePlugin.js
Expand Up @@ -28,7 +28,7 @@ class FunctionModuleTemplatePlugin {
if(Array.isArray(module.providedExports))
source.add("/* exports provided: " + module.providedExports.join(", ") + " */\n");
else if(module.providedExports)
source.add("/* unknown exports provided */\n");
source.add("/* no static exports found */\n");
if(Array.isArray(module.usedExports))
source.add("/* exports used: " + module.usedExports.join(", ") + " */\n");
else if(module.usedExports)
Expand Down

0 comments on commit 08615a2

Please sign in to comment.