propelix-cli 0.0.1-dev7 → 0.0.1-dev8
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/index.cjs +2 -2
- package/package.json +6 -7
package/dist/index.cjs
CHANGED
|
@@ -15913,10 +15913,10 @@ var ME_QUERY = `
|
|
|
15913
15913
|
|
|
15914
15914
|
// src/index.ts
|
|
15915
15915
|
var program2 = new Command();
|
|
15916
|
-
program2.name("propelix").description("Propelix CLI").version("0.0.1-
|
|
15916
|
+
program2.name("propelix").description("Propelix CLI").version("0.0.1-dev8").option("--base-url <url>", "API base URL (default: https://propelix.ai)").option("--token <token>", "Auth token (overrides stored config)").option("--insecure", "Disable TLS certificate verification (for local dev)").option("--json", "Output as JSON");
|
|
15917
15917
|
registerAuthCommand(program2);
|
|
15918
15918
|
program2.command("version").description("Print version number").action(() => {
|
|
15919
|
-
console.log("0.0.1-
|
|
15919
|
+
console.log("0.0.1-dev8");
|
|
15920
15920
|
});
|
|
15921
15921
|
program2.command("whoami").description("Show the currently authenticated user").action(async () => {
|
|
15922
15922
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "propelix-cli",
|
|
3
|
-
"version": "0.0.1-
|
|
3
|
+
"version": "0.0.1-dev8",
|
|
4
4
|
"description": "CLI for Propelix",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"bin": {
|
|
@@ -9,11 +9,6 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsup",
|
|
14
|
-
"dev": "tsup --watch",
|
|
15
|
-
"prepublishOnly": "pnpm run build"
|
|
16
|
-
},
|
|
17
12
|
"dependencies": {
|
|
18
13
|
"chalk": "^4.1.2",
|
|
19
14
|
"commander": "^12.1.0",
|
|
@@ -26,5 +21,9 @@
|
|
|
26
21
|
},
|
|
27
22
|
"engines": {
|
|
28
23
|
"node": ">=18"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"dev": "tsup --watch"
|
|
29
28
|
}
|
|
30
|
-
}
|
|
29
|
+
}
|