fivetanley / ember-cli-migrator

migrate your files to the standard ember-cli structure, preserving git history
MIT License
106 stars 22 forks source link

Added support for components #58

Closed kiwiupover closed 9 years ago

kiwiupover commented 9 years ago

With a tests for a component and a service.

Also updated the readme.

kiwiupover commented 9 years ago

The components work out of the box. I was going to add a test services as well but they are also being migrated as expected.

Should I add component and service here:

TypedExport.knownTypes = [
  'model',
  'serializer',
  'route',
  'controller',
  'view',
  'mixin',
  'transform',
  'adapter',
  'component',
  'service'
];

The tests run with out this update as you can see.

igorT commented 9 years ago

Please do, I'm a bit confused why it works without it

kiwiupover commented 9 years ago

@igorT this should be ready to go

igorT commented 9 years ago

Thanks!