@teambit/harmony.content.cli-reference 2.0.660 → 2.0.662
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli-reference.docs.mdx +1 -1
- package/cli-reference.json +21 -6
- package/cli-reference.mdx +13 -10
- package/dist/cli-reference.docs.mdx +1 -1
- package/dist/cli-reference.json +21 -6
- package/dist/cli-reference.mdx.js +45 -6
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1750821706704.js → preview-1750994319833.js} +2 -2
- package/package.json +2 -2
package/cli-reference.docs.mdx
CHANGED
package/cli-reference.json
CHANGED
|
@@ -144,14 +144,14 @@
|
|
|
144
144
|
"Setup global configuration (default: workspace-specific)"
|
|
145
145
|
]
|
|
146
146
|
],
|
|
147
|
-
"description": "Setup MCP integration with VS Code, Cursor, Windsurf, Roo Code, or other editors",
|
|
148
|
-
"extendedDescription": "Creates or updates configuration files to integrate Bit MCP server with supported editors. Currently supports VS Code, Cursor, Windsurf,
|
|
147
|
+
"description": "Setup MCP integration with VS Code, Cursor, Windsurf, Roo Code, Cline, or other editors",
|
|
148
|
+
"extendedDescription": "Creates or updates configuration files to integrate Bit MCP server with supported editors. Currently supports VS Code, Cursor, Windsurf, Roo Code, and Cline.",
|
|
149
149
|
"group": "ungrouped",
|
|
150
150
|
"private": false,
|
|
151
151
|
"arguments": [
|
|
152
152
|
{
|
|
153
153
|
"name": "editor",
|
|
154
|
-
"description": "Editor to setup (default: vscode). Available: vscode, cursor, windsurf, roo"
|
|
154
|
+
"description": "Editor to setup (default: vscode). Available: vscode, cursor, windsurf, roo, cline"
|
|
155
155
|
}
|
|
156
156
|
]
|
|
157
157
|
},
|
|
@@ -175,14 +175,14 @@
|
|
|
175
175
|
"Generate rules for consumer projects that only use Bit components as packages"
|
|
176
176
|
]
|
|
177
177
|
],
|
|
178
|
-
"description": "Write Bit MCP rules/instructions file for VS Code, Cursor, or print to screen",
|
|
179
|
-
"extendedDescription": "Creates or updates rules/instructions markdown files to provide AI assistants with guidance on using Bit MCP server. Currently supports VS Code and
|
|
178
|
+
"description": "Write Bit MCP rules/instructions file for VS Code, Cursor, Roo Code, Cline, or print to screen",
|
|
179
|
+
"extendedDescription": "Creates or updates rules/instructions markdown files to provide AI assistants with guidance on using Bit MCP server. Currently supports VS Code, Cursor, Roo Code, and Cline. Use --print to display content on screen. Use --consumer-project for non-Bit workspaces that only consume components as packages.",
|
|
180
180
|
"group": "ungrouped",
|
|
181
181
|
"private": false,
|
|
182
182
|
"arguments": [
|
|
183
183
|
{
|
|
184
184
|
"name": "editor",
|
|
185
|
-
"description": "Editor to write rules for (default: vscode). Available: vscode, cursor"
|
|
185
|
+
"description": "Editor to write rules for (default: vscode). Available: vscode, cursor, roo, cline"
|
|
186
186
|
}
|
|
187
187
|
]
|
|
188
188
|
}
|
|
@@ -1909,6 +1909,11 @@
|
|
|
1909
1909
|
"skip-tests",
|
|
1910
1910
|
"skip running component tests during build process"
|
|
1911
1911
|
],
|
|
1912
|
+
[
|
|
1913
|
+
"",
|
|
1914
|
+
"loose",
|
|
1915
|
+
"allow build to succeed even if tasks like tests or lint fail"
|
|
1916
|
+
],
|
|
1912
1917
|
[
|
|
1913
1918
|
"",
|
|
1914
1919
|
"skip-tasks <string>",
|
|
@@ -3173,6 +3178,11 @@
|
|
|
3173
3178
|
"build",
|
|
3174
3179
|
"locally run the build pipeline (i.e. not via rippleCI) and complete the tag"
|
|
3175
3180
|
],
|
|
3181
|
+
[
|
|
3182
|
+
"",
|
|
3183
|
+
"loose",
|
|
3184
|
+
"allow tag --build to succeed even if tasks like tests or lint fail"
|
|
3185
|
+
],
|
|
3176
3186
|
[
|
|
3177
3187
|
"",
|
|
3178
3188
|
"detach-head",
|
|
@@ -3251,6 +3261,11 @@
|
|
|
3251
3261
|
"ignore-build-errors",
|
|
3252
3262
|
"proceed to snap pipeline even when build pipeline fails"
|
|
3253
3263
|
],
|
|
3264
|
+
[
|
|
3265
|
+
"",
|
|
3266
|
+
"loose",
|
|
3267
|
+
"allow snap --build to succeed even if tasks like tests or lint fail"
|
|
3268
|
+
],
|
|
3254
3269
|
[
|
|
3255
3270
|
"",
|
|
3256
3271
|
"rebuild-deps-graph",
|
package/cli-reference.mdx
CHANGED
|
@@ -228,6 +228,7 @@ because this process can take a while on a large workspace, some flags are avail
|
|
|
228
228
|
| `--cache-packages-on-capsule-root` | | set the package-manager cache on the capsule root |
|
|
229
229
|
| `--list-tasks <string>` | | list tasks of an env or a component-id for each one of the pipelines: build, tag and snap |
|
|
230
230
|
| `--skip-tests` | | skip running component tests during build process |
|
|
231
|
+
| `--loose` | | allow build to succeed even if tasks like tests or lint fail |
|
|
231
232
|
| `--skip-tasks <string>` | | skip the given tasks. for multiple tasks, separate by a comma and wrap with quotes. specify the task-name (e.g. "TypescriptCompiler") or the task-aspect-id (e.g. teambit.compilation/compiler) |
|
|
232
233
|
| `--fail-fast` | | stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed) |
|
|
233
234
|
| `--include-snap` | | include snap pipeline tasks. Warning: this may deploy/publish if you have such tasks |
|
|
@@ -1600,12 +1601,12 @@ Start the Model Context Protocol (MCP) server with the specified configuration
|
|
|
1600
1601
|
|
|
1601
1602
|
**Usage**: `mcp-server setup [editor]`
|
|
1602
1603
|
|
|
1603
|
-
**Description**: Setup MCP integration with VS Code, Cursor, Windsurf, Roo Code, or other editors
|
|
1604
|
-
Creates or updates configuration files to integrate Bit MCP server with supported editors. Currently supports VS Code, Cursor, Windsurf,
|
|
1604
|
+
**Description**: Setup MCP integration with VS Code, Cursor, Windsurf, Roo Code, Cline, or other editors
|
|
1605
|
+
Creates or updates configuration files to integrate Bit MCP server with supported editors. Currently supports VS Code, Cursor, Windsurf, Roo Code, and Cline.
|
|
1605
1606
|
|
|
1606
|
-
| **Arg** |
|
|
1607
|
-
| -------- |
|
|
1608
|
-
| `editor` | Editor to setup (default: vscode). Available: vscode, cursor, windsurf, roo |
|
|
1607
|
+
| **Arg** | **Description** |
|
|
1608
|
+
| -------- | :--------------------------------------------------------------------------------: |
|
|
1609
|
+
| `editor` | Editor to setup (default: vscode). Available: vscode, cursor, windsurf, roo, cline |
|
|
1609
1610
|
|
|
1610
1611
|
| **Option** | **Option alias** | **Description** |
|
|
1611
1612
|
| --------------------------------- | :--------------: | -------------------------------------------------------------------------------------- |
|
|
@@ -1617,12 +1618,12 @@ Creates or updates configuration files to integrate Bit MCP server with supporte
|
|
|
1617
1618
|
|
|
1618
1619
|
**Usage**: `mcp-server rules [editor]`
|
|
1619
1620
|
|
|
1620
|
-
**Description**: Write Bit MCP rules/instructions file for VS Code, Cursor, or print to screen
|
|
1621
|
-
Creates or updates rules/instructions markdown files to provide AI assistants with guidance on using Bit MCP server. Currently supports VS Code and
|
|
1621
|
+
**Description**: Write Bit MCP rules/instructions file for VS Code, Cursor, Roo Code, Cline, or print to screen
|
|
1622
|
+
Creates or updates rules/instructions markdown files to provide AI assistants with guidance on using Bit MCP server. Currently supports VS Code, Cursor, Roo Code, and Cline. Use --print to display content on screen. Use --consumer-project for non-Bit workspaces that only consume components as packages.
|
|
1622
1623
|
|
|
1623
|
-
| **Arg** |
|
|
1624
|
-
| -------- |
|
|
1625
|
-
| `editor` | Editor to write rules for (default: vscode). Available: vscode, cursor |
|
|
1624
|
+
| **Arg** | **Description** |
|
|
1625
|
+
| -------- | :--------------------------------------------------------------------------------: |
|
|
1626
|
+
| `editor` | Editor to write rules for (default: vscode). Available: vscode, cursor, roo, cline |
|
|
1626
1627
|
|
|
1627
1628
|
| **Option** | **Option alias** | **Description** |
|
|
1628
1629
|
| -------------------- | :--------------: | ----------------------------------------------------------------------------- |
|
|
@@ -2085,6 +2086,7 @@ optionally, provide [pattern] to limit the fork to specific components
|
|
|
2085
2086
|
| `--skip-auto-snap` | | skip auto snapping dependents |
|
|
2086
2087
|
| `--disable-snap-pipeline` | | skip the snap pipeline. this will for instance skip packing and publishing component version for install, and app deployment |
|
|
2087
2088
|
| `--ignore-build-errors` | | proceed to snap pipeline even when build pipeline fails |
|
|
2089
|
+
| `--loose` | | allow snap --build to succeed even if tasks like tests or lint fail |
|
|
2088
2090
|
| `--rebuild-deps-graph` | | do not reuse the saved dependencies graph, instead build it from scratch |
|
|
2089
2091
|
| `--ignore-issues <issues>` | `-i` | ignore component issues (shown in "bit status" as "issues found"), issues to ignore: [MissingPackagesDependenciesOnFs, MissingManuallyConfiguredPackages, UntrackedDependencies, ResolveErrors, RelativeComponents, RelativeComponentsAuthored, ParseErrors, MissingDists, LegacyInsideHarmony, MissingDependenciesOnFs, ImportNonMainFiles, MultipleEnvs, MissingLinksFromNodeModulesToSrc, CircularDependencies, DuplicateComponentAndPackage, MergeConfigHasConflict, NonLoadedEnv, ExternalEnvWithoutVersion, RemovedDependencies, RemovedEnv, DeprecatedDependencies, SelfReference, ImportFromDirectory] to ignore multiple issues, separate them by a comma and wrap with quotes. to ignore all issues, specify "\*". |
|
|
2090
2092
|
| `--fail-fast` | | stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed) |
|
|
@@ -2240,6 +2242,7 @@ if patterns are entered, you can specify a version per pattern using "@" sign, e
|
|
|
2240
2242
|
| `--ignore-newest-version` | `-I` | allow tagging even when the component has newer versions e.g. for hotfixes. |
|
|
2241
2243
|
| `--fail-fast` | | stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed) |
|
|
2242
2244
|
| `--build` | `-b` | locally run the build pipeline (i.e. not via rippleCI) and complete the tag |
|
|
2245
|
+
| `--loose` | | allow tag --build to succeed even if tasks like tests or lint fail |
|
|
2243
2246
|
| `--detach-head` | | UNSUPPORTED YET. in case a component is checked out to an older version, tag it without changing the head |
|
|
2244
2247
|
|
|
2245
2248
|
---
|
package/dist/cli-reference.json
CHANGED
|
@@ -144,14 +144,14 @@
|
|
|
144
144
|
"Setup global configuration (default: workspace-specific)"
|
|
145
145
|
]
|
|
146
146
|
],
|
|
147
|
-
"description": "Setup MCP integration with VS Code, Cursor, Windsurf, Roo Code, or other editors",
|
|
148
|
-
"extendedDescription": "Creates or updates configuration files to integrate Bit MCP server with supported editors. Currently supports VS Code, Cursor, Windsurf,
|
|
147
|
+
"description": "Setup MCP integration with VS Code, Cursor, Windsurf, Roo Code, Cline, or other editors",
|
|
148
|
+
"extendedDescription": "Creates or updates configuration files to integrate Bit MCP server with supported editors. Currently supports VS Code, Cursor, Windsurf, Roo Code, and Cline.",
|
|
149
149
|
"group": "ungrouped",
|
|
150
150
|
"private": false,
|
|
151
151
|
"arguments": [
|
|
152
152
|
{
|
|
153
153
|
"name": "editor",
|
|
154
|
-
"description": "Editor to setup (default: vscode). Available: vscode, cursor, windsurf, roo"
|
|
154
|
+
"description": "Editor to setup (default: vscode). Available: vscode, cursor, windsurf, roo, cline"
|
|
155
155
|
}
|
|
156
156
|
]
|
|
157
157
|
},
|
|
@@ -175,14 +175,14 @@
|
|
|
175
175
|
"Generate rules for consumer projects that only use Bit components as packages"
|
|
176
176
|
]
|
|
177
177
|
],
|
|
178
|
-
"description": "Write Bit MCP rules/instructions file for VS Code, Cursor, or print to screen",
|
|
179
|
-
"extendedDescription": "Creates or updates rules/instructions markdown files to provide AI assistants with guidance on using Bit MCP server. Currently supports VS Code and
|
|
178
|
+
"description": "Write Bit MCP rules/instructions file for VS Code, Cursor, Roo Code, Cline, or print to screen",
|
|
179
|
+
"extendedDescription": "Creates or updates rules/instructions markdown files to provide AI assistants with guidance on using Bit MCP server. Currently supports VS Code, Cursor, Roo Code, and Cline. Use --print to display content on screen. Use --consumer-project for non-Bit workspaces that only consume components as packages.",
|
|
180
180
|
"group": "ungrouped",
|
|
181
181
|
"private": false,
|
|
182
182
|
"arguments": [
|
|
183
183
|
{
|
|
184
184
|
"name": "editor",
|
|
185
|
-
"description": "Editor to write rules for (default: vscode). Available: vscode, cursor"
|
|
185
|
+
"description": "Editor to write rules for (default: vscode). Available: vscode, cursor, roo, cline"
|
|
186
186
|
}
|
|
187
187
|
]
|
|
188
188
|
}
|
|
@@ -1909,6 +1909,11 @@
|
|
|
1909
1909
|
"skip-tests",
|
|
1910
1910
|
"skip running component tests during build process"
|
|
1911
1911
|
],
|
|
1912
|
+
[
|
|
1913
|
+
"",
|
|
1914
|
+
"loose",
|
|
1915
|
+
"allow build to succeed even if tasks like tests or lint fail"
|
|
1916
|
+
],
|
|
1912
1917
|
[
|
|
1913
1918
|
"",
|
|
1914
1919
|
"skip-tasks <string>",
|
|
@@ -3173,6 +3178,11 @@
|
|
|
3173
3178
|
"build",
|
|
3174
3179
|
"locally run the build pipeline (i.e. not via rippleCI) and complete the tag"
|
|
3175
3180
|
],
|
|
3181
|
+
[
|
|
3182
|
+
"",
|
|
3183
|
+
"loose",
|
|
3184
|
+
"allow tag --build to succeed even if tasks like tests or lint fail"
|
|
3185
|
+
],
|
|
3176
3186
|
[
|
|
3177
3187
|
"",
|
|
3178
3188
|
"detach-head",
|
|
@@ -3251,6 +3261,11 @@
|
|
|
3251
3261
|
"ignore-build-errors",
|
|
3252
3262
|
"proceed to snap pipeline even when build pipeline fails"
|
|
3253
3263
|
],
|
|
3264
|
+
[
|
|
3265
|
+
"",
|
|
3266
|
+
"loose",
|
|
3267
|
+
"allow snap --build to succeed even if tasks like tests or lint fail"
|
|
3268
|
+
],
|
|
3254
3269
|
[
|
|
3255
3270
|
"",
|
|
3256
3271
|
"rebuild-deps-graph",
|
|
@@ -1151,6 +1151,19 @@ function MDXContent(_ref) {
|
|
|
1151
1151
|
"align": null
|
|
1152
1152
|
}, (0, _react2.mdx)("inlineCode", {
|
|
1153
1153
|
parentName: "td"
|
|
1154
|
+
}, "--loose")), (0, _react2.mdx)("td", {
|
|
1155
|
+
parentName: "tr",
|
|
1156
|
+
"align": "center"
|
|
1157
|
+
}), (0, _react2.mdx)("td", {
|
|
1158
|
+
parentName: "tr",
|
|
1159
|
+
"align": null
|
|
1160
|
+
}, "allow build to succeed even if tasks like tests or lint fail")), (0, _react2.mdx)("tr", {
|
|
1161
|
+
parentName: "tbody"
|
|
1162
|
+
}, (0, _react2.mdx)("td", {
|
|
1163
|
+
parentName: "tr",
|
|
1164
|
+
"align": null
|
|
1165
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
1166
|
+
parentName: "td"
|
|
1154
1167
|
}, "--skip-tasks <string>")), (0, _react2.mdx)("td", {
|
|
1155
1168
|
parentName: "tr",
|
|
1156
1169
|
"align": "center"
|
|
@@ -8602,9 +8615,9 @@ function MDXContent(_ref) {
|
|
|
8602
8615
|
parentName: "p"
|
|
8603
8616
|
}, "mcp-server setup [editor]")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
8604
8617
|
parentName: "p"
|
|
8605
|
-
}, "Description"), ": Setup MCP integration with VS Code, Cursor, Windsurf, Roo Code, or other editors", (0, _react2.mdx)("br", {
|
|
8618
|
+
}, "Description"), ": Setup MCP integration with VS Code, Cursor, Windsurf, Roo Code, Cline, or other editors", (0, _react2.mdx)("br", {
|
|
8606
8619
|
parentName: "p"
|
|
8607
|
-
}), "\n", "Creates or updates configuration files to integrate Bit MCP server with supported editors. Currently supports VS Code, Cursor, Windsurf,
|
|
8620
|
+
}), "\n", "Creates or updates configuration files to integrate Bit MCP server with supported editors. Currently supports VS Code, Cursor, Windsurf, Roo Code, and Cline."), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
8608
8621
|
parentName: "table"
|
|
8609
8622
|
}, (0, _react2.mdx)("tr", {
|
|
8610
8623
|
parentName: "thead"
|
|
@@ -8630,7 +8643,7 @@ function MDXContent(_ref) {
|
|
|
8630
8643
|
}, "editor")), (0, _react2.mdx)("td", {
|
|
8631
8644
|
parentName: "tr",
|
|
8632
8645
|
"align": "center"
|
|
8633
|
-
}, "Editor to setup (default: vscode). Available: vscode, cursor, windsurf, roo")))), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
8646
|
+
}, "Editor to setup (default: vscode). Available: vscode, cursor, windsurf, roo, cline")))), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
8634
8647
|
parentName: "table"
|
|
8635
8648
|
}, (0, _react2.mdx)("tr", {
|
|
8636
8649
|
parentName: "thead"
|
|
@@ -8698,9 +8711,9 @@ function MDXContent(_ref) {
|
|
|
8698
8711
|
parentName: "p"
|
|
8699
8712
|
}, "mcp-server rules [editor]")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
8700
8713
|
parentName: "p"
|
|
8701
|
-
}, "Description"), ": Write Bit MCP rules/instructions file for VS Code, Cursor, or print to screen", (0, _react2.mdx)("br", {
|
|
8714
|
+
}, "Description"), ": Write Bit MCP rules/instructions file for VS Code, Cursor, Roo Code, Cline, or print to screen", (0, _react2.mdx)("br", {
|
|
8702
8715
|
parentName: "p"
|
|
8703
|
-
}), "\n", "Creates or updates rules/instructions markdown files to provide AI assistants with guidance on using Bit MCP server. Currently supports VS Code and
|
|
8716
|
+
}), "\n", "Creates or updates rules/instructions markdown files to provide AI assistants with guidance on using Bit MCP server. Currently supports VS Code, Cursor, Roo Code, and Cline. Use --print to display content on screen. Use --consumer-project for non-Bit workspaces that only consume components as packages."), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
8704
8717
|
parentName: "table"
|
|
8705
8718
|
}, (0, _react2.mdx)("tr", {
|
|
8706
8719
|
parentName: "thead"
|
|
@@ -8726,7 +8739,7 @@ function MDXContent(_ref) {
|
|
|
8726
8739
|
}, "editor")), (0, _react2.mdx)("td", {
|
|
8727
8740
|
parentName: "tr",
|
|
8728
8741
|
"align": "center"
|
|
8729
|
-
}, "Editor to write rules for (default: vscode). Available: vscode, cursor")))), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
8742
|
+
}, "Editor to write rules for (default: vscode). Available: vscode, cursor, roo, cline")))), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
8730
8743
|
parentName: "table"
|
|
8731
8744
|
}, (0, _react2.mdx)("tr", {
|
|
8732
8745
|
parentName: "thead"
|
|
@@ -11125,6 +11138,19 @@ function MDXContent(_ref) {
|
|
|
11125
11138
|
"align": null
|
|
11126
11139
|
}, (0, _react2.mdx)("inlineCode", {
|
|
11127
11140
|
parentName: "td"
|
|
11141
|
+
}, "--loose")), (0, _react2.mdx)("td", {
|
|
11142
|
+
parentName: "tr",
|
|
11143
|
+
"align": "center"
|
|
11144
|
+
}), (0, _react2.mdx)("td", {
|
|
11145
|
+
parentName: "tr",
|
|
11146
|
+
"align": null
|
|
11147
|
+
}, "allow snap --build to succeed even if tasks like tests or lint fail")), (0, _react2.mdx)("tr", {
|
|
11148
|
+
parentName: "tbody"
|
|
11149
|
+
}, (0, _react2.mdx)("td", {
|
|
11150
|
+
parentName: "tr",
|
|
11151
|
+
"align": null
|
|
11152
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
11153
|
+
parentName: "td"
|
|
11128
11154
|
}, "--rebuild-deps-graph")), (0, _react2.mdx)("td", {
|
|
11129
11155
|
parentName: "tr",
|
|
11130
11156
|
"align": "center"
|
|
@@ -12135,6 +12161,19 @@ function MDXContent(_ref) {
|
|
|
12135
12161
|
"align": null
|
|
12136
12162
|
}, (0, _react2.mdx)("inlineCode", {
|
|
12137
12163
|
parentName: "td"
|
|
12164
|
+
}, "--loose")), (0, _react2.mdx)("td", {
|
|
12165
|
+
parentName: "tr",
|
|
12166
|
+
"align": "center"
|
|
12167
|
+
}), (0, _react2.mdx)("td", {
|
|
12168
|
+
parentName: "tr",
|
|
12169
|
+
"align": null
|
|
12170
|
+
}, "allow tag --build to succeed even if tasks like tests or lint fail")), (0, _react2.mdx)("tr", {
|
|
12171
|
+
parentName: "tbody"
|
|
12172
|
+
}, (0, _react2.mdx)("td", {
|
|
12173
|
+
parentName: "tr",
|
|
12174
|
+
"align": null
|
|
12175
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
12176
|
+
parentName: "td"
|
|
12138
12177
|
}, "--detach-head")), (0, _react2.mdx)("td", {
|
|
12139
12178
|
parentName: "tr",
|
|
12140
12179
|
"align": "center"
|