ember-codemods / ember-modules-codemod

Codemod to upgrade Ember apps to JavaScript (ES6) modules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't rewrite uncovered imports

kellyselden opened this issue · 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.

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