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
Hi! I noticed a strange change of behaviour from v0.14 onwards when using jscodeshift on this code snippet:
export default /** @type {SomeType} */ ({ someProp: 'someProp', });
I'm "transforming" this file as such:
const root = j.(fs.readFileSync(filepath, 'utf-8')); return root.toSource();
The code should not have changed
This seems to be the case in v0.13 and before.
export default ({ /** @type {SomeType} */ someProp: 'someProp' });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! I noticed a strange change of behaviour from v0.14 onwards when using jscodeshift on this code snippet:
I'm "transforming" this file as such:
Expected output
The code should not have changed
This seems to be the case in v0.13 and before.
Actual output (from v0.14 onward)
The text was updated successfully, but these errors were encountered: