@profullstack/hqtui-demo 0.1.1 → 0.1.2
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 +1 -1
- package/package.json +2 -2
- package/src/main.ts +1 -1
package/dist/main.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@profullstack/hqtui-demo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"prepublishOnly": "bun x tsc -p tsconfig.json"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@profullstack/hqtui": "^0.1.
|
|
28
|
+
"@profullstack/hqtui": "^0.1.2"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
package/src/main.ts
CHANGED
|
@@ -49,7 +49,7 @@ function parseArgs(argv: string[]): Options {
|
|
|
49
49
|
case "-h":
|
|
50
50
|
case "--help": printHelp(); process.exit(0);
|
|
51
51
|
case "-v":
|
|
52
|
-
case "--version": console.log("hqtui-demo 0.1.
|
|
52
|
+
case "--version": console.log("hqtui-demo 0.1.2"); process.exit(0);
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
return options;
|