@outlit/cli 0.1.0 → 1.0.0

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.
Files changed (2) hide show
  1. package/dist/cli.js +5 -3
  2. package/package.json +4 -2
package/dist/cli.js CHANGED
@@ -104,7 +104,7 @@ var package_default;
104
104
  var init_package = __esm(() => {
105
105
  package_default = {
106
106
  name: "@outlit/cli",
107
- version: "0.1.0",
107
+ version: "1.0.0",
108
108
  description: "CLI for Outlit customer intelligence platform",
109
109
  license: "Apache-2.0",
110
110
  repository: {
@@ -117,7 +117,9 @@ var init_package = __esm(() => {
117
117
  access: "public"
118
118
  },
119
119
  type: "module",
120
- bin: { outlit: "./dist/cli.js" },
120
+ bin: {
121
+ outlit: "./dist/cli.js"
122
+ },
121
123
  files: ["dist"],
122
124
  scripts: {
123
125
  dev: "bun run src/cli.ts",
@@ -2490,7 +2492,7 @@ function runMcpCliSetup(key, json, opts, exitOnError = true) {
2490
2492
  DEFAULT_MCP_URL,
2491
2493
  "--header",
2492
2494
  `Authorization: Bearer ${key}`
2493
- ], { stdio: !isJsonMode(json) ? "inherit" : "ignore" });
2495
+ ], { stdio: "pipe" });
2494
2496
  } catch (err) {
2495
2497
  if (exitOnError) {
2496
2498
  if (isEnoentError(err)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outlit/cli",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "description": "CLI for Outlit customer intelligence platform",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -13,7 +13,9 @@
13
13
  "access": "public"
14
14
  },
15
15
  "type": "module",
16
- "bin": { "outlit": "./dist/cli.js" },
16
+ "bin": {
17
+ "outlit": "./dist/cli.js"
18
+ },
17
19
  "files": ["dist"],
18
20
  "scripts": {
19
21
  "dev": "bun run src/cli.ts",