-
Notifications
You must be signed in to change notification settings - Fork 526
Update command docs to 0.77 #828
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
Conversation
I had to manually fix the docs for xml. You can find the changes here: nushell/nushell#8462 |
@Hofer-Julian I landed your xml fix. Do you want to re-run these to make sure it works? I also noticed that the windows command |
That would also update the version numbers.
Yes, because I've run the command on a Linux machine. |
Maybe we can see what @hustcer has to say, he always works on this. |
Looks good to me, I think we can land it, thanks |
This looks good. I love how the examples show up so nice. Nice work! However, the next time we run these commands we need to try and make sure that we have all the plugins installed and registered. For example, looking at the help for
|
Mmmh weird, do I have to register plugins every time I run install_all.sh? |
The plugins will be registered if you have registered them before |
Then the problem probably lies somewhere else |
Add new crates to the release script and updates the order of existing crates according to the `nu_deps.nu` script.
This PR is part of porting all old scripts nushell#221 and ports `make_release` folder ## Summary ### make_release/this_week_in_nu_weekly.nu This script has already been ported and has received some updates: nushell#433. So I just removed it ```yaml from: before_v0.60/make_release/this_week_in_nu_weekly.nu to: make_release/this_week_in_nu_weekly.nu functions: do-work: make_release/this_week_in_nu_weekly.nu:1:query-week-span ``` ### make_release/this_week_in_nu_release.nu I have ported this, but I'm not sure if we need it because it has strange name and we have `prs.nu` and `make_release/release-note/` ```yaml from: before_v0.60/make_release/this_week_in_nu_release.nu to: make_release/this_week_in_nu_release.nu functions: do-work: make_release/this_week_in_nu_release.nu:1:do-work ``` ### make_release/nu_release.nu This has already been ported to `make_release/nu_release.nu` and has received new updates nushell#828 so I just removed it ```yaml from: before_v0.60/make_release/nu_release.nu to: make_release/nu_release.nu ``` ### make_release/gen-js-ext.nu This has already been moved to `make_release/gen-js-ext.nu` and has received new updates nushell#621 but not completely ported so I have ported it - pipeline `for` to `each` - `$nu.scope.commands` to `scope commands` - explicit `print` ```yaml from: before_v0.60/make_release/gen-js-ext.nu to: make_release/gen-js-ext.nu functions: gen_keywords: make_release/gen-js-ext.nu:1:gen_keywords gen_sub_keywords: make_release/gen-js-ext.nu:20:gen_sub_keywords ``` ### make_release/gen-ts-ext.nu I have ported this script ```yaml from: before_v0.60/make_release/gen-ts-ext.nu to: make_release/gen-ts-ext.nu functions: gen-ts-cmds-begin: make_release/gen-ts-ext.nu:1:gen-ts-cmds-begin gen-ts-cmds: make_release/gen-ts-ext.nu:18:gen-ts-cmds gen-ts-subs: make_release/gen-ts-ext.nu:40:gen-ts-subs ```
Looking forward to seeing the expected output of commands in the docs :)