@lobehub/market-cli 0.0.6 → 0.0.7
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/dist/cli.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -198,7 +198,7 @@ function registerRegisterCommand(program2) {
|
|
|
198
198
|
},
|
|
199
199
|
platform: process.arch,
|
|
200
200
|
source,
|
|
201
|
-
version: "0.0.
|
|
201
|
+
version: "0.0.7"
|
|
202
202
|
});
|
|
203
203
|
await saveCredentials({
|
|
204
204
|
baseUrl: baseURL,
|
|
@@ -307,7 +307,7 @@ function registerSkillsCommand(program2) {
|
|
|
307
307
|
}));
|
|
308
308
|
const table = renderTable(
|
|
309
309
|
[
|
|
310
|
-
{ key: "identifier", label: "IDENTIFIER"
|
|
310
|
+
{ key: "identifier", label: "IDENTIFIER" },
|
|
311
311
|
{ key: "name", label: "NAME", maxWidth: 20 },
|
|
312
312
|
{ key: "description", label: "DESCRIPTION", maxWidth: 40 },
|
|
313
313
|
{ key: "stars", label: "STARS" },
|
|
@@ -347,7 +347,7 @@ Showing ${start}-${end} of ${result.totalCount} results`);
|
|
|
347
347
|
|
|
348
348
|
// src/cli.ts
|
|
349
349
|
var program = new Command();
|
|
350
|
-
program.name("lobehub-market").description("LobeHub Market CLI - Device registration and auth management").version("0.0.
|
|
350
|
+
program.name("lobehub-market").description("LobeHub Market CLI - Device registration and auth management").version("0.0.7");
|
|
351
351
|
registerRegisterCommand(program);
|
|
352
352
|
registerAuthCommand(program);
|
|
353
353
|
registerSkillsCommand(program);
|