@broch/cli 1.18.0 → 1.19.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.
package/dist/cli.js CHANGED
@@ -3588,7 +3588,7 @@ var init_readline_instance = __esm({
3588
3588
 
3589
3589
  // src/lib/version.ts
3590
3590
  function getCliVersion() {
3591
- return "1.18.0";
3591
+ return "1.19.0";
3592
3592
  }
3593
3593
  var init_version = __esm({
3594
3594
  "src/lib/version.ts"() {
package/dist/index.js CHANGED
@@ -915,7 +915,7 @@ var init_source = __esm({
915
915
 
916
916
  // src/lib/version.ts
917
917
  function getCliVersion() {
918
- return "1.18.0";
918
+ return "1.19.0";
919
919
  }
920
920
  var init_version = __esm({
921
921
  "src/lib/version.ts"() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@broch/cli",
3
3
  "//": "DO NOT run `npm publish` from here. The CLI is published ONLY via CI: .github/workflows/publish-release.yml publishes @broch/cli to npmjs.org on a stable release tag; .github/workflows/publish-dev.yml publishes @broch-io/cli (note: different scope) to GitHub Packages on push to dev. The `prepublishOnly` script and `publishConfig` below exist for those CI jobs, not for local publishing.",
4
- "version": "1.18.0",
4
+ "version": "1.19.0",
5
5
  "description": "CLI client for Broch SSH tunnel server",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "prepublishOnly": "npm run clean && npm run build",
20
20
  "start": "node dist/cli.js",
21
21
  "cli": "npm run build && node dist/cli.js",
22
- "cli-dev": "BROCH_SERVER_URL=https://dev.broch.io npm run build && BROCH_SERVER_URL=https://dev.broch.io node dist/cli.js",
22
+ "cli-dev": "BROCH_SERVER_URL=https://develop.broch.io npm run build && BROCH_SERVER_URL=https://develop.broch.io node dist/cli.js",
23
23
  "cli-local": "BROCH_SERVER_URL=https://local.broch.io npm run build && BROCH_SERVER_URL=https://local.broch.io node dist/cli.js",
24
24
  "test": "npm run test:unit && npm run test:offline",
25
25
  "test:watch": "vitest --config vitest.config.unit.js",