@genex-ai/cli-demo 1.9.1-dev.514 → 1.9.2-dev.515
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 +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6580,6 +6580,7 @@ function when(iso) {
|
|
|
6580
6580
|
const ms = Date.now() - new Date(iso).getTime();
|
|
6581
6581
|
if (!Number.isFinite(ms) || ms < 0) return "recently";
|
|
6582
6582
|
const mins = Math.round(ms / 6e4);
|
|
6583
|
+
if (mins < 1) return "just now";
|
|
6583
6584
|
if (mins < 60) return `${mins} minute${mins === 1 ? "" : "s"} ago`;
|
|
6584
6585
|
const hours = Math.round(mins / 60);
|
|
6585
6586
|
if (hours < 48) return `${hours} hour${hours === 1 ? "" : "s"} ago`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genex-ai/cli-demo",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.2-dev.515",
|
|
4
4
|
"description": "Set up your project's agent workspace (.claude/.codex/.cursor in the game folder), authorize, create a game project, generate AI assets, and publish (genex CLI).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|