Skip to content
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

improve the description of --force flag of bit-delete #8288

Merged
merged 2 commits into from
Dec 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions scopes/component/remove/delete-cmd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ this command marks the components as deleted, and after snap/tag and export they
options = [
['', 'lane', 'when on a lane, delete the component from this lane only. avoid merging it to main or other lanes'],
['', 'update-main', 'EXPERIMENTAL. delete component/s on the main lane after merging this lane into main'],
[
'f',
'force',
'removes the component from the scope, even if used as a dependency. WARNING: components that depend on this component will corrupt',
],
['s', 'silent', 'skip confirmation'],
[
'',
'hard',
'NOT-RECOMMENDED. delete a component completely from a remote scope. careful! this is a permanent change that could corrupt dependents.',
],
[
'f',
'force',
'relevant for --hard. allow the deletion even if used as a dependency. WARNING: components that depend on this component will corrupt',
],
] as CommandOptions;
loader = true;
migration = true;
Expand Down