Removing Components
Refactoring code often causes components to become obsolete or irrelevant. This is where removing and deprecating components becomes useful and necessary.
#
Remove a component from a workspaceRemoving a local component has no ripple effects. This is only relevant to the consuming project. To do so specify the component ID to remove.
bit remove ui/button
successfully removed components:ui/button
Bit triggers a warning when trying to remove modified components. Use the --force
flag to force it.
tip
Use bit remove --help
or bit remove -h
to get a list of available options for this command.
#
Effects of deleting components from a workspaceOther components in the workspace may depend on removed components. Meaning that removing these dependencies affects dependent components. Several cases may occur when deleting a local component:
- A new component that depends on a removed component is not affected. This is because Bit did not isolate the component.
- A staged component that depends on a removed component causes Bit to stop the remove command. To force it, we use the
--force
flag. - An exported component that depends on a local removed component is not affected. This is because an exported component is isolated and immutable. So deleting a local dependency does not affect.
#
Remove a component from a remote scopeTo remove a component from a remote scope, specify the full component ID.
bit remove username.your-scope/ui/button --remote
successfully removed components:username.your-scope/ui/button
#
Effects of deleting componentsTo better understand how Bit handles deleted components, let's follow this example:
- The
button
component is in theui
scope. - A
card
component depends on thebutton
component and is also inui
scope. - A
login
component also depends on thebutton
component but is in another scope -admin
.
This is what happens if we remove the button
component:
- Bit notifies that the
card
component depends on thebutton
component. If we want to remove it, Bit asks to use the--force
flag. This is because scopes don't cache their components. - The
card
component has a missing dependency ofbutton
component. A refactor forcard
is critical for it to work. - The
login
component that also depends on thebutton
component is not affected by the removal of thebutton
component. This is because scopes keep a cache of external dependencies. - It is still possible to source the
login
component to another consumer project, as the cache works for Bit. - Installing the
login
component using npm fails because npm tries to install thebutton
component from its original scope.
#
Deprecate a component in a remote scopeTo deprecate a component in a remote Scope, specify the full component ID and use the --remote
option.
bit deprecate username.your-scope/ui/button --remotedeprecated components: username.your-scope/ui/button
#
Deprecating a component in a workspaceTo deprecate a component in a workspace, specify the component ID.
bit deprecate ui/buttondeprecated components: ui/button
tip
Use bit deprecate --help
or bit deprecate -h
to get a list of available options for this command.