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 followed this guide to migrate to v1.0.0, but a line that imports TableHead is not updated by the script.
import TableHead from '@material-ui/core/Table/TableHead'; should be updated to import TableHead from '@material-ui/core/TableHead';
import TableHead from '@material-ui/core/Table/TableHead';
import TableHead from '@material-ui/core/TableHead';
The script doesn't update the line. It's working correctly with @material-ui/core/Table/TableBody, so I guess there are some leaks.
@material-ui/core/Table/TableBody
jscodeshift -t node_modules/@material-ui/codemod/lib/v1.0.0/import-path.js App.js
The text was updated successfully, but these errors were encountered:
oliviertassinari
Successfully merging a pull request may close this issue.
I followed this guide to migrate to v1.0.0, but a line that imports TableHead is not updated by the script.
Expected Behavior
import TableHead from '@material-ui/core/Table/TableHead';
should be updated to
import TableHead from '@material-ui/core/TableHead';
Current Behavior
The script doesn't update the line.
It's working correctly with
@material-ui/core/Table/TableBody
, so I guess there are some leaks.Steps to Reproduce (for bugs)
import TableHead from '@material-ui/core/Table/TableHead';
to App.js.jscodeshift -t node_modules/@material-ui/codemod/lib/v1.0.0/import-path.js App.js
Your Environment
The text was updated successfully, but these errors were encountered: