ember-modules-codemod
ember-modules-codemod copied to clipboard
Don't rewrite uncovered imports
Very minor, but the codemod turns
import { not, and, eq, or, array, instanceOf, conditional } from 'ember-awesome-macros';
into
import {
not,
and,
eq,
or,
array,
instanceOf,
conditional
} from 'ember-awesome-macros';
even though it's not covered by the codemod.
This is the result of running the given set of imports through recast, I'm not sure we can control it...