duclaw-cli 1.8.24 → 1.8.26
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/bundle.js +2 -2
- package/dist/main.js +1 -1
- package/dist/web/assets/index-DeFB8-yJ.css +1 -0
- package/dist/web/assets/{index-Doy6gLMX.js → index-IW6c8h0i.js} +3 -3
- package/dist/web/index.html +2 -2
- package/dist/worker-main.js +1 -1
- package/package.json +1 -1
- package/dist/web/assets/index-BtfAYyKj.css +0 -1
package/dist/bundle.js
CHANGED
|
@@ -30242,7 +30242,7 @@ function printHelp() {
|
|
|
30242
30242
|
`);
|
|
30243
30243
|
}
|
|
30244
30244
|
function printVersion() {
|
|
30245
|
-
console.log(`duclaw-cli v${true ? "1.8.
|
|
30245
|
+
console.log(`duclaw-cli v${true ? "1.8.26" : "unknown"}`);
|
|
30246
30246
|
}
|
|
30247
30247
|
function getDuclawTemplate() {
|
|
30248
30248
|
return {
|
|
@@ -51630,7 +51630,7 @@ var systemRoutes = new Hono2();
|
|
|
51630
51630
|
var startTime = Date.now();
|
|
51631
51631
|
systemRoutes.get("/system/info", (c) => {
|
|
51632
51632
|
return c.json({
|
|
51633
|
-
version: true ? "1.8.
|
|
51633
|
+
version: true ? "1.8.26" : "unknown",
|
|
51634
51634
|
uptime: Math.floor((Date.now() - startTime) / 1e3),
|
|
51635
51635
|
env: process.env.NODE_ENV || "development",
|
|
51636
51636
|
nodeVersion: process.version
|