gemi 0.4.16 → 0.4.18
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/index.js +19 -1334
- package/dist/auth/adapters/prisma.d.ts +1 -1
- package/dist/auth/adapters/prisma.d.ts.map +1 -1
- package/dist/auth/adapters/types.d.ts +2 -2
- package/dist/auth/adapters/types.d.ts.map +1 -1
- package/dist/chunk-21e105fb2b3d36d7.js +799 -0
- package/dist/chunk-7afdc0ba5afe109a.js +21 -0
- package/dist/chunk-970e033f764e29fc.js +19 -0
- package/dist/chunk-fa40971555060604.js +81 -0
- package/dist/email/index.js +15 -13910
- package/dist/facades/index.js +8 -99
- package/dist/http/index.js +8 -99
- package/dist/kernel/index.js +37 -594
- package/dist/server/index.js +48 -1106
- package/dist/vite/index.js +4 -21
- package/package.json +1 -1
package/dist/vite/index.js
CHANGED
|
@@ -1,26 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __toESM = (mod, isNodeMode, target) => {
|
|
8
|
-
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
9
|
-
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
10
|
-
for (let key of __getOwnPropNames(mod))
|
|
11
|
-
if (!__hasOwnProp.call(to, key))
|
|
12
|
-
__defProp(to, key, {
|
|
13
|
-
get: () => mod[key],
|
|
14
|
-
enumerable: true
|
|
15
|
-
});
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
19
|
-
var __require = createRequire(import.meta.url);
|
|
1
|
+
// @bun
|
|
2
|
+
import"../chunk-970e033f764e29fc.js";
|
|
20
3
|
|
|
21
4
|
// vite/input.ts
|
|
22
|
-
import {join} from "
|
|
23
|
-
import {readFileSync, existsSync} from "
|
|
5
|
+
import {join} from "path";
|
|
6
|
+
import {readFileSync, existsSync} from "fs";
|
|
24
7
|
async function input() {
|
|
25
8
|
const root = process.cwd();
|
|
26
9
|
const inputPath = join(root, ".gemi/rollupInput.json");
|