@scalepad/cli 0.1.1 → 0.1.2
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/README.md +2 -0
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Command line interface for the public ScalePad Core API and Lifecycle Manager API.
|
|
4
4
|
|
|
5
|
+
This is the primary supported developer interface for this repo. The `@scalepad/sdk-core` and `@scalepad/sdk-lm` packages are intentionally thinner helper packages used by the CLI.
|
|
6
|
+
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
```bash
|
package/dist/index.js
CHANGED
|
@@ -346,7 +346,7 @@ async function run() {
|
|
|
346
346
|
program
|
|
347
347
|
.name("scalepad")
|
|
348
348
|
.description("ScalePad public CLI for Core API and Lifecycle Manager")
|
|
349
|
-
.version("0.1.
|
|
349
|
+
.version("0.1.1");
|
|
350
350
|
const auth = program.command("auth").description("manage API credentials");
|
|
351
351
|
addSharedAuthOptions(auth.command("login")
|
|
352
352
|
.description("authenticate with an API key and store it under a profile")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scalepad/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "ScalePad command line interface for the Core API and Lifecycle Manager API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@inquirer/prompts": "^7.8.4",
|
|
20
20
|
"commander": "^14.0.1",
|
|
21
|
-
"@scalepad/sdk-lm": "0.1.
|
|
22
|
-
"@scalepad/sdk-core": "0.1.
|
|
21
|
+
"@scalepad/sdk-lm": "0.1.2",
|
|
22
|
+
"@scalepad/sdk-core": "0.1.2"
|
|
23
23
|
},
|
|
24
24
|
"optionalDependencies": {
|
|
25
25
|
"keytar": "^7.9.0"
|