Commands
#
Help#
Get information about available CLI commandsbit --help
#
Get information about a specific CLI commandbit <command> --help
#
Workspace#
Initialize a new workspaceInitialize a Bit Harmony workspace and then manually configure the environment and install any peer dependencies needed.
bit init --harmony
Once installed you should get the following message:
successfully initialized a bit workspace.
#
Start Bit development server / Run the Workspace UIbit start
#
Get workspace statusbit status
#
Reset the workspace - hardDeletes all Bit files and directories, including Bit configuration, tracking and locally stored component release versions.
bit init --reset-hard
#
Reset the workspace - softRemoves all locally stored component release versions.
Reset the workspace .bitmap
file and register components as if they were newly added.
bit init --reset-new
#
Component workflow#
Create a Componentbit create react-component <my-component> --namespace <namespace>
#
See Available Templatesbit templates
#
Track a componentTo add pre-existing components not created with the bit create
command.
bit add <path/to/component>
#
Track a component and set it with a namespacebit add <path/to/component> --namespace <namespace>
Alias: -n
#
Untrack a componentbit untrack <component-id>
#
Get component configuration detailsThat includes its dependencies, package name, environment, etc.
bit show <component-id>
#
Version (tag) a componentbit tag <component-id> <new-version-number>
- Optional:
--message "a note about recent changes"
#
Untag a componentbit untag <component-id>
#
Untag all componentsbit untag --all
#
Export componentsbit export
#
Dependencies#
Install a packagebit install <package-name>
#
Install all dependencies after cloning a workspaceThis process will install all packages, import all components and link the imported components.
bit install
#
Import a componentImport a component from a remote scope.
bit import <component-id>
#
Import all componentsImport all components listed in the workspace .bitmap
file.
bit import
#
List all dependencies of a component and the reason for each dependency versionEXPERIMENTAL
bit dependencies <component-id>
#
Component development#
Compile a componentbit compile <component-id>
#
Compile all componentsbit compile
#
Compile all components that were modified since their last compilationbit compile --changed
#
Build a componentbit build <component-id>
#
Build all componentsbit build
#
Test componentsbit test
#
Move or remove components#
Move component to a different directorybit mv <component> <target-dir>
#
Relink components to the workspace'link' generates symlinks for components in the workspace node_modules
directory.
The linking process happens automatically when a component is tracked.
There could be cases where the path to a component has been modified and that process needs to be re-run with to address recent changes.
bit link
#
Remove a component from the workspacebit remove <component-id>
#
Deprecating a component in a workspacebit deprecate <component-id>
#
Remove a component from a remote scopebit remove <component-id> --remote
#
Deprecate a component in a remote scopebit deprecate <component-id> --remote
#
Other#
Eject component configurationsCreate a component.json
file in the component's directory, to directly configure it. Learn more here.
bit eject-conf <component>