jukto-cli 0.1.0 → 0.1.1

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 CHANGED
@@ -40,8 +40,8 @@ Options:
40
40
 
41
41
  By default, the CLI uses the public Jukto services:
42
42
 
43
- - Gateway: `https://gateway.jukto.dev`
44
- - Manager: `https://manager.jukto.dev`
43
+ - Gateway: `https://gateway.jukto.pw`
44
+ - Manager: `https://manager.jukto.pw`
45
45
 
46
46
  Override them with environment variables when developing against local or custom infrastructure:
47
47
 
package/dist/index.js CHANGED
@@ -14,8 +14,8 @@ import { randomBytes } from "crypto";
14
14
  import { spawn, spawnSync, execSync } from "child_process";
15
15
  import { createServer, createConnection } from "net";
16
16
  import { createInterface } from "readline";
17
- const DEFAULT_PROXY_URL = normalizeGatewayUrl(process.env.JUKTO_PROXY_URL || "https://gateway.jukto.dev");
18
- const MANAGER_URL = normalizeGatewayUrl(process.env.JUKTO_MANAGER_URL || "https://manager.jukto.dev");
17
+ const DEFAULT_PROXY_URL = normalizeGatewayUrl(process.env.JUKTO_PROXY_URL || "https://gateway.jukto.pw");
18
+ const MANAGER_URL = normalizeGatewayUrl(process.env.JUKTO_MANAGER_URL || "https://manager.jukto.pw");
19
19
  const CLI_ARGS = process.argv.slice(2);
20
20
  function hasAnyFlag(args, ...flags) {
21
21
  return flags.some((flag) => args.includes(flag));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jukto-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "author": {
5
5
  "name": "Saif Ahmed",
6
6
  "email": "codingwebsa@gmail.com",