@profullstack/hqtui-demo 0.5.0 → 0.5.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/dist/main.js CHANGED
@@ -60,7 +60,7 @@ function parseArgs(argv) {
60
60
  process.exit(0);
61
61
  case "-v":
62
62
  case "--version":
63
- console.log("hqtui-demo 0.5.0");
63
+ console.log("hqtui-demo 0.5.1");
64
64
  process.exit(0);
65
65
  }
66
66
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@profullstack/hqtui-demo",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "The HQTUI reference dashboard: a btop-grade terminal system monitor. Runs on real system metrics or a deterministic simulation.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -27,7 +27,7 @@
27
27
  "audit:scroll": "bun scripts/scrollaudit.ts"
28
28
  },
29
29
  "dependencies": {
30
- "@profullstack/hqtui": "^0.5.0"
30
+ "@profullstack/hqtui": "^0.5.1"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
package/src/main.ts CHANGED
@@ -51,7 +51,7 @@ function parseArgs(argv: string[]): Options {
51
51
  case "-h":
52
52
  case "--help": printHelp(); process.exit(0);
53
53
  case "-v":
54
- case "--version": console.log("hqtui-demo 0.5.0"); process.exit(0);
54
+ case "--version": console.log("hqtui-demo 0.5.1"); process.exit(0);
55
55
  }
56
56
  }
57
57
  return options;