-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
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
fix(docs):Make the ts-migrate able to execute #202
base: master
Are you sure you want to change the base?
Conversation
The ts-migrate produced errors for npm or npx when used with run command as it didn't used the local or remote repository for execution.Fixed the problem using "npm exec" command which is used for running local scripts installed at dependency level.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have tested each command specifically for correct usage.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change worked for me! Since there is no script for ts-migrate exec will create the file
I guess review must be done by a person with write access to make merging acceptable |
Thanks for this PR @Prakhargarg-2010196, I was stuck and puzzled about how to run the script until I found it. Would be great if the maintainers could get this merged. |
The ts-migrate produced errors for npm or npx when used with run command as it didn't used the local or remote repository for execution.Fixed the problem using "npm exec" command which is used for running local scripts installed at dependency level.
This will fix issue #201 I guess.