ember-modules-codemod icon indicating copy to clipboard operation
ember-modules-codemod copied to clipboard

Don't rewrite uncovered imports

Open kellyselden opened this issue 6 years ago • 1 comments

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.

kellyselden avatar Apr 21 '18 01:04 kellyselden

This is the result of running the given set of imports through recast, I'm not sure we can control it...

rwjblue avatar Apr 21 '18 15:04 rwjblue