Closed
Description
import {
something,
somethingElse,
inFactAVeryLongList,
ofLotsOfThings,
whichIsUglyOnOneLine
} from "./MyAllPurposeUtil";
This doesn't get picked up by the regex import scanning in Closure Compiler, because it assumes each statement is one per line:
Probably tough to fix. But also something that can be hard to diagnose.
Easy workaround:
import {
...
} from "./MyAllPurposeUtil";
import "./MyAllPurposeUtil"; // tell CC about this dep
Metadata
Metadata
Assignees
Labels
No labels