flarecms 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/client/index.js +23576 -0
- package/dist/index.js +2 -0
- package/dist/server/index.js +43280 -0
- package/dist/style.css +5536 -0
- package/dist/style.css.d.ts +8 -0
- package/package.json +3 -4
package/dist/index.js
CHANGED
|
@@ -21335,6 +21335,7 @@ var createDb = (d1) => {
|
|
|
21335
21335
|
dialect: new D1Dialect({ database: d1 })
|
|
21336
21336
|
});
|
|
21337
21337
|
};
|
|
21338
|
+
|
|
21338
21339
|
// src/server/index.ts
|
|
21339
21340
|
import { Hono as Hono11 } from "hono";
|
|
21340
21341
|
|
|
@@ -51886,6 +51887,7 @@ function createFlareAPI(options = {}) {
|
|
|
51886
51887
|
api2.get("/health", (c) => apiResponse.ok(c, { status: "ok" }));
|
|
51887
51888
|
return api2;
|
|
51888
51889
|
}
|
|
51890
|
+
|
|
51889
51891
|
// src/client/FlareAdminRouter.tsx
|
|
51890
51892
|
import { useEffect as useEffect19 } from "react";
|
|
51891
51893
|
|