gemi 0.4.18 → 0.4.19
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/app/App.d.ts +0 -1
- package/dist/app/App.d.ts.map +1 -1
- package/dist/app/App.test.d.ts +20 -0
- package/dist/app/App.test.d.ts.map +1 -0
- package/dist/app/createComponentTree.test.d.ts +2 -0
- package/dist/app/createComponentTree.test.d.ts.map +1 -0
- package/dist/app/createFlatApiRoutes.d.ts.map +1 -1
- package/dist/app/createFlatApiRoutes.test.d.ts +2 -0
- package/dist/app/createFlatApiRoutes.test.d.ts.map +1 -0
- package/dist/app/createFlatViewRoutes.test.d.ts +2 -0
- package/dist/app/createFlatViewRoutes.test.d.ts.map +1 -0
- package/dist/app/createRouteManifest.test.d.ts +2 -0
- package/dist/app/createRouteManifest.test.d.ts.map +1 -0
- package/dist/app/index.d.ts +2 -0
- package/dist/app/index.d.ts.map +1 -0
- package/dist/app/index.js +1 -504
- package/dist/chunk-0d0f764773c0f6b8.js +2 -0
- package/dist/chunk-0e3473f7e43f4876.js +2 -0
- package/dist/chunk-847629c9a7550cc3.js +2 -0
- package/dist/email/index.js +1 -68
- package/dist/facades/index.js +1 -59
- package/dist/http/index.js +1 -454
- package/dist/kernel/index.js +2 -13352
- package/dist/server/index.js +5 -6479
- package/dist/vite/index.js +1 -17
- package/package.json +1 -1
package/dist/vite/index.js
CHANGED
|
@@ -1,18 +1,2 @@
|
|
|
1
1
|
// @bun
|
|
2
|
-
import"../chunk-
|
|
3
|
-
|
|
4
|
-
// vite/input.ts
|
|
5
|
-
import {join} from "path";
|
|
6
|
-
import {readFileSync, existsSync} from "fs";
|
|
7
|
-
async function input() {
|
|
8
|
-
const root = process.cwd();
|
|
9
|
-
const inputPath = join(root, ".gemi/rollupInput.json");
|
|
10
|
-
if (!existsSync(inputPath)) {
|
|
11
|
-
return ["app/main.tsx"];
|
|
12
|
-
}
|
|
13
|
-
const json = readFileSync(inputPath).toJSON();
|
|
14
|
-
return json;
|
|
15
|
-
}
|
|
16
|
-
export {
|
|
17
|
-
input
|
|
18
|
-
};
|
|
2
|
+
import"../chunk-0d0f764773c0f6b8.js";import{join as t} from"path";import{readFileSync as r,existsSync as i} from"fs";async function p(){const n=process.cwd(),o=t(n,".gemi/rollupInput.json");if(!i(o))return["app/main.tsx"];return r(o).toJSON()}export{p as input};
|