@teambit/harmony.content.cli-reference 1.95.119 → 1.95.120
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.json +40 -25
- package/cli-reference.mdx +12 -0
- package/dist/cli-reference.json +40 -25
- package/dist/cli-reference.mdx.js +41 -1
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1676570198614.js → preview-1676777489824.js} +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.120.tgz +0 -0
- package/package.json +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.119.tgz +0 -0
package/cli-reference.json
CHANGED
|
@@ -1121,31 +1121,6 @@
|
|
|
1121
1121
|
}
|
|
1122
1122
|
]
|
|
1123
1123
|
},
|
|
1124
|
-
{
|
|
1125
|
-
"name": "watch",
|
|
1126
|
-
"alias": "",
|
|
1127
|
-
"options": [
|
|
1128
|
-
[
|
|
1129
|
-
"v",
|
|
1130
|
-
"verbose",
|
|
1131
|
-
"show npm verbose output for inspection and print the stack trace"
|
|
1132
|
-
],
|
|
1133
|
-
[
|
|
1134
|
-
"",
|
|
1135
|
-
"skip-pre-compilation",
|
|
1136
|
-
"skip the compilation step before starting to watch"
|
|
1137
|
-
],
|
|
1138
|
-
[
|
|
1139
|
-
"t",
|
|
1140
|
-
"check-types [string]",
|
|
1141
|
-
"EXPERIMENTAL. show errors/warnings for types. options are [file, project] to investigate only changed file or entire project. defaults to project"
|
|
1142
|
-
]
|
|
1143
|
-
],
|
|
1144
|
-
"description": "automatically recompile modified components (on save)",
|
|
1145
|
-
"extendedDescription": "",
|
|
1146
|
-
"group": "development",
|
|
1147
|
-
"private": false
|
|
1148
|
-
},
|
|
1149
1124
|
{
|
|
1150
1125
|
"name": "use <component-id>",
|
|
1151
1126
|
"alias": "",
|
|
@@ -1199,6 +1174,31 @@
|
|
|
1199
1174
|
}
|
|
1200
1175
|
]
|
|
1201
1176
|
},
|
|
1177
|
+
{
|
|
1178
|
+
"name": "watch",
|
|
1179
|
+
"alias": "",
|
|
1180
|
+
"options": [
|
|
1181
|
+
[
|
|
1182
|
+
"v",
|
|
1183
|
+
"verbose",
|
|
1184
|
+
"show npm verbose output for inspection and print the stack trace"
|
|
1185
|
+
],
|
|
1186
|
+
[
|
|
1187
|
+
"",
|
|
1188
|
+
"skip-pre-compilation",
|
|
1189
|
+
"skip the compilation step before starting to watch"
|
|
1190
|
+
],
|
|
1191
|
+
[
|
|
1192
|
+
"t",
|
|
1193
|
+
"check-types [string]",
|
|
1194
|
+
"EXPERIMENTAL. show errors/warnings for types. options are [file, project] to investigate only changed file or entire project. defaults to project"
|
|
1195
|
+
]
|
|
1196
|
+
],
|
|
1197
|
+
"description": "automatically recompile modified components (on save)",
|
|
1198
|
+
"extendedDescription": "",
|
|
1199
|
+
"group": "development",
|
|
1200
|
+
"private": false
|
|
1201
|
+
},
|
|
1202
1202
|
{
|
|
1203
1203
|
"name": "move <current-component-dir> <new-component-dir>",
|
|
1204
1204
|
"alias": "mv",
|
|
@@ -1253,6 +1253,21 @@
|
|
|
1253
1253
|
"group": "development",
|
|
1254
1254
|
"private": false
|
|
1255
1255
|
},
|
|
1256
|
+
{
|
|
1257
|
+
"name": "server",
|
|
1258
|
+
"alias": "",
|
|
1259
|
+
"options": [
|
|
1260
|
+
[
|
|
1261
|
+
"p",
|
|
1262
|
+
"port [port]",
|
|
1263
|
+
"port to run the server on"
|
|
1264
|
+
]
|
|
1265
|
+
],
|
|
1266
|
+
"description": "EXPERIMENTAL. communicate with bit cli program via http requests",
|
|
1267
|
+
"extendedDescription": "",
|
|
1268
|
+
"group": "general",
|
|
1269
|
+
"private": false
|
|
1270
|
+
},
|
|
1256
1271
|
{
|
|
1257
1272
|
"name": "create <template-name> <component-names...>",
|
|
1258
1273
|
"alias": "",
|
package/cli-reference.mdx
CHANGED
|
@@ -1125,6 +1125,18 @@ use `bit pattern --help` to understand patterns better and `bit pattern <pattern
|
|
|
1125
1125
|
|
|
1126
1126
|
---
|
|
1127
1127
|
|
|
1128
|
+
## server
|
|
1129
|
+
|
|
1130
|
+
**Description**: EXPERIMENTAL. communicate with bit cli program via http requests
|
|
1131
|
+
|
|
1132
|
+
`bit server`
|
|
1133
|
+
|
|
1134
|
+
| **Option** | **Option alias** | **Description** |
|
|
1135
|
+
| --------------- | :--------------: | ------------------------- |
|
|
1136
|
+
| `--port [port]` | `-p` | port to run the server on |
|
|
1137
|
+
|
|
1138
|
+
---
|
|
1139
|
+
|
|
1128
1140
|
## show
|
|
1129
1141
|
|
|
1130
1142
|
**Description**: display the component's essential information
|
package/dist/cli-reference.json
CHANGED
|
@@ -1121,31 +1121,6 @@
|
|
|
1121
1121
|
}
|
|
1122
1122
|
]
|
|
1123
1123
|
},
|
|
1124
|
-
{
|
|
1125
|
-
"name": "watch",
|
|
1126
|
-
"alias": "",
|
|
1127
|
-
"options": [
|
|
1128
|
-
[
|
|
1129
|
-
"v",
|
|
1130
|
-
"verbose",
|
|
1131
|
-
"show npm verbose output for inspection and print the stack trace"
|
|
1132
|
-
],
|
|
1133
|
-
[
|
|
1134
|
-
"",
|
|
1135
|
-
"skip-pre-compilation",
|
|
1136
|
-
"skip the compilation step before starting to watch"
|
|
1137
|
-
],
|
|
1138
|
-
[
|
|
1139
|
-
"t",
|
|
1140
|
-
"check-types [string]",
|
|
1141
|
-
"EXPERIMENTAL. show errors/warnings for types. options are [file, project] to investigate only changed file or entire project. defaults to project"
|
|
1142
|
-
]
|
|
1143
|
-
],
|
|
1144
|
-
"description": "automatically recompile modified components (on save)",
|
|
1145
|
-
"extendedDescription": "",
|
|
1146
|
-
"group": "development",
|
|
1147
|
-
"private": false
|
|
1148
|
-
},
|
|
1149
1124
|
{
|
|
1150
1125
|
"name": "use <component-id>",
|
|
1151
1126
|
"alias": "",
|
|
@@ -1199,6 +1174,31 @@
|
|
|
1199
1174
|
}
|
|
1200
1175
|
]
|
|
1201
1176
|
},
|
|
1177
|
+
{
|
|
1178
|
+
"name": "watch",
|
|
1179
|
+
"alias": "",
|
|
1180
|
+
"options": [
|
|
1181
|
+
[
|
|
1182
|
+
"v",
|
|
1183
|
+
"verbose",
|
|
1184
|
+
"show npm verbose output for inspection and print the stack trace"
|
|
1185
|
+
],
|
|
1186
|
+
[
|
|
1187
|
+
"",
|
|
1188
|
+
"skip-pre-compilation",
|
|
1189
|
+
"skip the compilation step before starting to watch"
|
|
1190
|
+
],
|
|
1191
|
+
[
|
|
1192
|
+
"t",
|
|
1193
|
+
"check-types [string]",
|
|
1194
|
+
"EXPERIMENTAL. show errors/warnings for types. options are [file, project] to investigate only changed file or entire project. defaults to project"
|
|
1195
|
+
]
|
|
1196
|
+
],
|
|
1197
|
+
"description": "automatically recompile modified components (on save)",
|
|
1198
|
+
"extendedDescription": "",
|
|
1199
|
+
"group": "development",
|
|
1200
|
+
"private": false
|
|
1201
|
+
},
|
|
1202
1202
|
{
|
|
1203
1203
|
"name": "move <current-component-dir> <new-component-dir>",
|
|
1204
1204
|
"alias": "mv",
|
|
@@ -1253,6 +1253,21 @@
|
|
|
1253
1253
|
"group": "development",
|
|
1254
1254
|
"private": false
|
|
1255
1255
|
},
|
|
1256
|
+
{
|
|
1257
|
+
"name": "server",
|
|
1258
|
+
"alias": "",
|
|
1259
|
+
"options": [
|
|
1260
|
+
[
|
|
1261
|
+
"p",
|
|
1262
|
+
"port [port]",
|
|
1263
|
+
"port to run the server on"
|
|
1264
|
+
]
|
|
1265
|
+
],
|
|
1266
|
+
"description": "EXPERIMENTAL. communicate with bit cli program via http requests",
|
|
1267
|
+
"extendedDescription": "",
|
|
1268
|
+
"group": "general",
|
|
1269
|
+
"private": false
|
|
1270
|
+
},
|
|
1256
1271
|
{
|
|
1257
1272
|
"name": "create <template-name> <component-names...>",
|
|
1258
1273
|
"alias": "",
|
|
@@ -4902,7 +4902,47 @@ function MDXContent(_ref) {
|
|
|
4902
4902
|
parentName: "p"
|
|
4903
4903
|
}, "scope-config list")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
4904
4904
|
parentName: "p"
|
|
4905
|
-
}, "Description"), ": list all scope configuration(s)"), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "
|
|
4905
|
+
}, "Description"), ": list all scope configuration(s)"), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "server"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
4906
|
+
parentName: "p"
|
|
4907
|
+
}, "Description"), ": EXPERIMENTAL. communicate with bit cli program via http requests"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
4908
|
+
parentName: "p"
|
|
4909
|
+
}, "bit server")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
4910
|
+
parentName: "table"
|
|
4911
|
+
}, (0, _react2.mdx)("tr", {
|
|
4912
|
+
parentName: "thead"
|
|
4913
|
+
}, (0, _react2.mdx)("th", {
|
|
4914
|
+
parentName: "tr",
|
|
4915
|
+
"align": null
|
|
4916
|
+
}, (0, _react2.mdx)("strong", {
|
|
4917
|
+
parentName: "th"
|
|
4918
|
+
}, "Option")), (0, _react2.mdx)("th", {
|
|
4919
|
+
parentName: "tr",
|
|
4920
|
+
"align": "center"
|
|
4921
|
+
}, (0, _react2.mdx)("strong", {
|
|
4922
|
+
parentName: "th"
|
|
4923
|
+
}, "Option alias")), (0, _react2.mdx)("th", {
|
|
4924
|
+
parentName: "tr",
|
|
4925
|
+
"align": null
|
|
4926
|
+
}, (0, _react2.mdx)("strong", {
|
|
4927
|
+
parentName: "th"
|
|
4928
|
+
}, "Description")))), (0, _react2.mdx)("tbody", {
|
|
4929
|
+
parentName: "table"
|
|
4930
|
+
}, (0, _react2.mdx)("tr", {
|
|
4931
|
+
parentName: "tbody"
|
|
4932
|
+
}, (0, _react2.mdx)("td", {
|
|
4933
|
+
parentName: "tr",
|
|
4934
|
+
"align": null
|
|
4935
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
4936
|
+
parentName: "td"
|
|
4937
|
+
}, "--port [port]")), (0, _react2.mdx)("td", {
|
|
4938
|
+
parentName: "tr",
|
|
4939
|
+
"align": "center"
|
|
4940
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
4941
|
+
parentName: "td"
|
|
4942
|
+
}, "-p")), (0, _react2.mdx)("td", {
|
|
4943
|
+
parentName: "tr",
|
|
4944
|
+
"align": null
|
|
4945
|
+
}, "port to run the server on")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "show"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
4906
4946
|
parentName: "p"
|
|
4907
4947
|
}, "Description"), ": display the component's essential information"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
4908
4948
|
parentName: "p"
|