@teambit/harmony.content.cli-reference 2.0.969 → 2.0.971
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 +6 -1
- package/cli-reference.mdx +13 -10
- package/dist/cli-reference.docs.mdx +1 -1
- package/dist/cli-reference.json +6 -1
- package/dist/cli-reference.mdx.js +11 -9
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1774632282463.js → preview-1774645620266.js} +2 -2
- package/package.json +2 -2
package/cli-reference.docs.mdx
CHANGED
package/cli-reference.json
CHANGED
|
@@ -4279,10 +4279,15 @@
|
|
|
4279
4279
|
"c",
|
|
4280
4280
|
"ignore-circular-dependencies",
|
|
4281
4281
|
"do not check for circular dependencies to get the results quicker"
|
|
4282
|
+
],
|
|
4283
|
+
[
|
|
4284
|
+
"",
|
|
4285
|
+
"quick",
|
|
4286
|
+
"show only new and modified components based on file changes. much faster, but does not detect dependency or config changes"
|
|
4282
4287
|
]
|
|
4283
4288
|
],
|
|
4284
4289
|
"description": "show workspace component status and issues",
|
|
4285
|
-
"extendedDescription": "displays the current state of all workspace components including new, modified, staged, and problematic components.\nidentifies blocking issues that prevent tagging/snapping and provides warnings with --warnings flag.\nessential for understanding workspace health before versioning components.",
|
|
4290
|
+
"extendedDescription": "displays the current state of all workspace components including new, modified, staged, and problematic components.\nidentifies blocking issues that prevent tagging/snapping and provides warnings with --warnings flag.\nessential for understanding workspace health before versioning components.\nuse --quick for a faster check that only detects file-level changes (new/modified components).\nfor maximum speed (skips aspect loading entirely), use \"bit mini-status\".",
|
|
4286
4291
|
"group": "info-analysis",
|
|
4287
4292
|
"private": false
|
|
4288
4293
|
},
|
package/cli-reference.mdx
CHANGED
|
@@ -2437,19 +2437,22 @@ allows saving work-in-progress changes and switching context, then restoring cha
|
|
|
2437
2437
|
**Description**: show workspace component status and issues
|
|
2438
2438
|
displays the current state of all workspace components including new, modified, staged, and problematic components.
|
|
2439
2439
|
identifies blocking issues that prevent tagging/snapping and provides warnings with --warnings flag.
|
|
2440
|
-
essential for understanding workspace health before versioning components.
|
|
2440
|
+
essential for understanding workspace health before versioning components.
|
|
2441
|
+
use --quick for a faster check that only detects file-level changes (new/modified components).
|
|
2442
|
+
for maximum speed (skips aspect loading entirely), use "bit mini-status".
|
|
2441
2443
|
|
|
2442
2444
|
`bit status`
|
|
2443
2445
|
|
|
2444
|
-
| **Option** | **Option alias** | **Description**
|
|
2445
|
-
| -------------------------------- | :--------------: |
|
|
2446
|
-
| `--json` | `-j` | return a json version of the component
|
|
2447
|
-
| `--warnings` | `-w` | show warnings. by default, only issues that block tag/snap are shown
|
|
2448
|
-
| `--verbose` | | show extra data: full snap hashes for staged components, and divergence point for lanes
|
|
2449
|
-
| `--lanes` | `-l` | when on a lane, show updates from main and updates from forked lanes
|
|
2450
|
-
| `--strict` | | exit with code 1 if any issues are found (both errors and warnings)
|
|
2451
|
-
| `--fail-on-error` | | exit with code 1 only when tag/snap blocker issues are found (not warnings)
|
|
2452
|
-
| `--ignore-circular-dependencies` | `-c` | do not check for circular dependencies to get the results quicker
|
|
2446
|
+
| **Option** | **Option alias** | **Description** |
|
|
2447
|
+
| -------------------------------- | :--------------: | -------------------------------------------------------------------------------------------------------------------------- |
|
|
2448
|
+
| `--json` | `-j` | return a json version of the component |
|
|
2449
|
+
| `--warnings` | `-w` | show warnings. by default, only issues that block tag/snap are shown |
|
|
2450
|
+
| `--verbose` | | show extra data: full snap hashes for staged components, and divergence point for lanes |
|
|
2451
|
+
| `--lanes` | `-l` | when on a lane, show updates from main and updates from forked lanes |
|
|
2452
|
+
| `--strict` | | exit with code 1 if any issues are found (both errors and warnings) |
|
|
2453
|
+
| `--fail-on-error` | | exit with code 1 only when tag/snap blocker issues are found (not warnings) |
|
|
2454
|
+
| `--ignore-circular-dependencies` | `-c` | do not check for circular dependencies to get the results quicker |
|
|
2455
|
+
| `--quick` | | show only new and modified components based on file changes. much faster, but does not detect dependency or config changes |
|
|
2453
2456
|
|
|
2454
2457
|
---
|
|
2455
2458
|
|
package/dist/cli-reference.json
CHANGED
|
@@ -4279,10 +4279,15 @@
|
|
|
4279
4279
|
"c",
|
|
4280
4280
|
"ignore-circular-dependencies",
|
|
4281
4281
|
"do not check for circular dependencies to get the results quicker"
|
|
4282
|
+
],
|
|
4283
|
+
[
|
|
4284
|
+
"",
|
|
4285
|
+
"quick",
|
|
4286
|
+
"show only new and modified components based on file changes. much faster, but does not detect dependency or config changes"
|
|
4282
4287
|
]
|
|
4283
4288
|
],
|
|
4284
4289
|
"description": "show workspace component status and issues",
|
|
4285
|
-
"extendedDescription": "displays the current state of all workspace components including new, modified, staged, and problematic components.\nidentifies blocking issues that prevent tagging/snapping and provides warnings with --warnings flag.\nessential for understanding workspace health before versioning components.",
|
|
4290
|
+
"extendedDescription": "displays the current state of all workspace components including new, modified, staged, and problematic components.\nidentifies blocking issues that prevent tagging/snapping and provides warnings with --warnings flag.\nessential for understanding workspace health before versioning components.\nuse --quick for a faster check that only detects file-level changes (new/modified components).\nfor maximum speed (skips aspect loading entirely), use \"bit mini-status\".",
|
|
4286
4291
|
"group": "info-analysis",
|
|
4287
4292
|
"private": false
|
|
4288
4293
|
},
|
|
@@ -4925,7 +4925,7 @@ function _createMdxContent(props) {
|
|
|
4925
4925
|
children: "s"
|
|
4926
4926
|
}), (0, _jsxRuntime.jsx)(_components.br, {}), "\n", (0, _jsxRuntime.jsx)(_components.strong, {
|
|
4927
4927
|
children: "Description"
|
|
4928
|
-
}), ": show workspace component status and issues", (0, _jsxRuntime.jsx)(_components.br, {}), "\n", "displays the current state of all workspace components including new, modified, staged, and problematic components.", (0, _jsxRuntime.jsx)(_components.br, {}), "\n", "identifies blocking issues that prevent tagging/snapping and provides warnings with --warnings flag.", (0, _jsxRuntime.jsx)(_components.br, {}), "\n", "essential for understanding workspace health before versioning components."]
|
|
4928
|
+
}), ": show workspace component status and issues", (0, _jsxRuntime.jsx)(_components.br, {}), "\n", "displays the current state of all workspace components including new, modified, staged, and problematic components.", (0, _jsxRuntime.jsx)(_components.br, {}), "\n", "identifies blocking issues that prevent tagging/snapping and provides warnings with --warnings flag.", (0, _jsxRuntime.jsx)(_components.br, {}), "\n", "essential for understanding workspace health before versioning components.", (0, _jsxRuntime.jsx)(_components.br, {}), "\n", "use --quick for a faster check that only detects file-level changes (new/modified components).", (0, _jsxRuntime.jsx)(_components.br, {}), "\n", "for maximum speed (skips aspect loading entirely), use \"bit mini-status\"."]
|
|
4929
4929
|
}), "\n", (0, _jsxRuntime.jsx)(_components.p, {
|
|
4930
4930
|
children: (0, _jsxRuntime.jsx)(_components.code, {
|
|
4931
4931
|
children: "bit status"
|
|
@@ -4937,29 +4937,31 @@ function _createMdxContent(props) {
|
|
|
4937
4937
|
children: "Option alias"
|
|
4938
4938
|
}), " | ", (0, _jsxRuntime.jsx)(_components.strong, {
|
|
4939
4939
|
children: "Description"
|
|
4940
|
-
}), "
|
|
4940
|
+
}), " |\n| -------------------------------- | :--------------: | -------------------------------------------------------------------------------------------------------------------------- |\n| ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4941
4941
|
children: "--json"
|
|
4942
4942
|
}), " | ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4943
4943
|
children: "-j"
|
|
4944
|
-
}), " | return a json version of the component
|
|
4944
|
+
}), " | return a json version of the component |\n| ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4945
4945
|
children: "--warnings"
|
|
4946
4946
|
}), " | ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4947
4947
|
children: "-w"
|
|
4948
|
-
}), " | show warnings. by default, only issues that block tag/snap are shown
|
|
4948
|
+
}), " | show warnings. by default, only issues that block tag/snap are shown |\n| ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4949
4949
|
children: "--verbose"
|
|
4950
|
-
}), " | | show extra data: full snap hashes for staged components, and divergence point for lanes
|
|
4950
|
+
}), " | | show extra data: full snap hashes for staged components, and divergence point for lanes |\n| ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4951
4951
|
children: "--lanes"
|
|
4952
4952
|
}), " | ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4953
4953
|
children: "-l"
|
|
4954
|
-
}), " | when on a lane, show updates from main and updates from forked lanes
|
|
4954
|
+
}), " | when on a lane, show updates from main and updates from forked lanes |\n| ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4955
4955
|
children: "--strict"
|
|
4956
|
-
}), " | | exit with code 1 if any issues are found (both errors and warnings)
|
|
4956
|
+
}), " | | exit with code 1 if any issues are found (both errors and warnings) |\n| ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4957
4957
|
children: "--fail-on-error"
|
|
4958
|
-
}), " | | exit with code 1 only when tag/snap blocker issues are found (not warnings)
|
|
4958
|
+
}), " | | exit with code 1 only when tag/snap blocker issues are found (not warnings) |\n| ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4959
4959
|
children: "--ignore-circular-dependencies"
|
|
4960
4960
|
}), " | ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4961
4961
|
children: "-c"
|
|
4962
|
-
}), " | do not check for circular dependencies to get the results quicker
|
|
4962
|
+
}), " | do not check for circular dependencies to get the results quicker |\n| ", (0, _jsxRuntime.jsx)(_components.code, {
|
|
4963
|
+
children: "--quick"
|
|
4964
|
+
}), " | | show only new and modified components based on file changes. much faster, but does not detect dependency or config changes |"]
|
|
4963
4965
|
}), "\n", (0, _jsxRuntime.jsx)(_components.hr, {}), "\n", (0, _jsxRuntime.jsx)(_components.h2, {
|
|
4964
4966
|
children: "system"
|
|
4965
4967
|
}), "\n", (0, _jsxRuntime.jsxs)(_components.p, {
|