groupchat 0.0.5 → 0.0.6

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.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import "./chunk-XSUJD2OK.js";
2
+ import "./chunk-EF672XXZ.js";
3
3
 
4
4
  // src/index.ts
5
5
  import WebSocket from "ws";
@@ -164,7 +164,7 @@ function UpdatePrompt({ updateInfo, onComplete }) {
164
164
  // package.json
165
165
  var package_default = {
166
166
  name: "groupchat",
167
- version: "0.0.5",
167
+ version: "0.0.6",
168
168
  description: "CLI chat client for Groupchat",
169
169
  type: "module",
170
170
  main: "./dist/index.js",
@@ -186,8 +186,8 @@ var package_default = {
186
186
  build: "tsup src/index.ts --format esm --dts --clean",
187
187
  dev: "tsup src/index.ts --format esm --watch",
188
188
  "dev:bun": "bunx tsup src/index.ts --format esm --watch",
189
- start: "NODE_ENV=production node dist/index.js",
190
- "start:bun": "NODE_ENV=production bun dist/index.js",
189
+ start: "NODE_ENV=development node dist/index.js",
190
+ "start:bun": "NODE_ENV=development bun dist/index.js",
191
191
  typecheck: "tsc --noEmit",
192
192
  prepublishOnly: "npm run typecheck && npm run build"
193
193
  },
@@ -251,7 +251,7 @@ async function startChat() {
251
251
  await showUpdatePrompt(updateInfo);
252
252
  }
253
253
  process.stdout.write("\x1B[2J\x1B[0f");
254
- const { App } = await import("./App-NG3MOIVV.js");
254
+ const { App } = await import("./App-BVDV6OLB.js");
255
255
  const { waitUntilExit } = render(React2.createElement(App), {
256
256
  exitOnCtrlC: false
257
257
  // We handle Ctrl+C manually
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "groupchat",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "CLI chat client for Groupchat",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,8 +22,8 @@
22
22
  "build": "tsup src/index.ts --format esm --dts --clean",
23
23
  "dev": "tsup src/index.ts --format esm --watch",
24
24
  "dev:bun": "bunx tsup src/index.ts --format esm --watch",
25
- "start": "NODE_ENV=production node dist/index.js",
26
- "start:bun": "NODE_ENV=production bun dist/index.js",
25
+ "start": "NODE_ENV=development node dist/index.js",
26
+ "start:bun": "NODE_ENV=development bun dist/index.js",
27
27
  "typecheck": "tsc --noEmit",
28
28
  "prepublishOnly": "npm run typecheck && npm run build"
29
29
  },