ember-native-class-codemod
                                
                                 ember-native-class-codemod copied to clipboard
                                
                                    ember-native-class-codemod copied to clipboard
                            
                            
                            
                        Some files not transformed and not mentioned in codemod.log
I have several/many files that were not modified and are not mentioned in codemod.log, one example file:
// app/models/purchase.js
import DS from 'ember-data';
import attr from 'ember-data/attr';
export default DS.Model.extend({
  action: attr('string'),
  currency: attr('string'), 
  quantity: attr('number'),
  valueUsd: attr('number'),
});
Tried this on EmberObserver, https://github.com/emberobserver/client/tree/es6-class-codemod
Committed codemods.log as well.
This can be seen with app/models/github-stats.js -- it does not appear in codemods.log and was not transformed.
We state in the README that we avoid migrating DS.Model, DS.Adapter, etc, are all of the untransformed file types ember-data object types?
Yes, they are, but other ember-data objects were transformed.