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 wasn't expecting the codemod to delete many comments in our code. One small example: before
export default Component.extend({ //To show or hide sibling checkboxes when one is hovered actions: { onMouseEnter() { this.set('siblingHovered', true); }, onMouseExit() { this.set('siblingHovered', false); }, }, });
after
@classic export default class CategorySelect extends Component { @action onMouseEnter() { this.set('siblingHovered', true); } @action onMouseExit() { this.set('siblingHovered', false); } }
The text was updated successfully, but these errors were encountered:
This is really a major issue.
It is also not possible to workaround untransformable things by commenting them out because they get lost then.
Sorry, something went wrong.
No branches or pull requests
I wasn't expecting the codemod to delete many comments in our code. One small example:
before
after
The text was updated successfully, but these errors were encountered: