We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I guess ember-es6-class-codemod is trying to name classes corresponding to their file names.
ember-es6-class-codemod
I'm using pods and I'm having following structure
File route.js was transformed into this
route.js
Result:
import Route from '@ember/routing/route'; export default class Route extends Route { // ... }
So I received error Route is already defined
Route is already defined
Expected:
import Route from '@ember/routing/route'; export default class AuthenticatedRoute extends Route { // ... }
The text was updated successfully, but these errors were encountered:
This is related to #52 as well, we need to get the test suite to a place where we can merge that PR
Sorry, something went wrong.
@pzuraq Thanks and sorry for disturbing.
No branches or pull requests
I guess
ember-es6-class-codemod
is trying to name classes corresponding to their file names.I'm using pods and I'm having following structure
File
route.js
was transformed into thisResult:
So I received error
Route is already defined
Expected:
The text was updated successfully, but these errors were encountered: