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
@blockly/migrate
The readme for the migration plugin suggests the following format for running the script:
npx @blockly/migrate rename --from 6 --in-place ./path/to/my/files* npx @blockly/migrate rename --from 6 --to 7 --in-place ./path/to/my/files*
This is invalid because --in-place actually takes a file parameter (a suffix to add to the output). So this is running on no files.
--in-place
It should look like:
npx @blockly/migrate rename ./path/to/my/files* --from 6 --in-place npx @blockly/migrate rename ./path/to/my/files* --from 6 --to 7 --in-place
The help options in the plugin may need to be updated as well. But fixing the readme is low lift.
No response
The text was updated successfully, but these errors were encountered:
Hey @BeksOmega @maribethb,
I would like to work on this issue. Can you please assign this to me?
Sorry, something went wrong.
Go for it @jenish-thapa =) Let me know if you have any questions!
jenish-thapa
No branches or pull requests
Check for duplicates
Component
@blockly/migrate
Description
The readme for the migration plugin suggests the following format for running the script:
This is invalid because
--in-place
actually takes a file parameter (a suffix to add to the output). So this is running on no files.It should look like:
The help options in the plugin may need to be updated as well. But fixing the readme is low lift.
Reproduction steps
Stack trace
No response
Screenshots
No response
The text was updated successfully, but these errors were encountered: