gemi 0.1.0 → 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/bin/gemi ADDED
Binary file
package/bin/gemi.ts ADDED
@@ -0,0 +1,3 @@
1
+ import { startDevServer } from "../dist/server";
2
+
3
+ startDevServer();
@@ -0,0 +1,5 @@
1
+ import { ReactNode } from "react";
2
+ export declare const Form: ({ children }: {
3
+ children: ReactNode;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ //# sourceMappingURL=Form.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../client/Form.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElC,eAAO,MAAM,IAAI,iBAAkB;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,4CAMzD,CAAC"}
@@ -1,2 +1,3 @@
1
1
  export { useRouter } from "./useRouter";
2
2
  export { Form } from "./Form";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../client/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC"}
@@ -0,0 +1,38 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, {
5
+ get: all[name],
6
+ enumerable: true,
7
+ configurable: true,
8
+ set: (newValue) => all[name] = () => newValue
9
+ });
10
+ };
11
+ var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
12
+ var __require = ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
13
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
14
+ }) : x)(function(x) {
15
+ if (typeof require !== "undefined")
16
+ return require.apply(this, arguments);
17
+ throw Error('Dynamic require of "' + x + '" is not supported');
18
+ });
19
+
20
+ // client/useRouter.ts
21
+ function useRouter() {
22
+ }
23
+ // client/Form.tsx
24
+ import {
25
+ jsxDEV
26
+ } from "react/jsx-dev-runtime";
27
+ var Form = ({ children }) => {
28
+ return jsxDEV("form", {
29
+ method: "",
30
+ id: "",
31
+ action: "",
32
+ children
33
+ }, undefined, false, undefined, this);
34
+ };
35
+ export {
36
+ useRouter,
37
+ Form
38
+ };
@@ -0,0 +1,2 @@
1
+ export declare function useRouter(): void;
2
+ //# sourceMappingURL=useRouter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useRouter.d.ts","sourceRoot":"","sources":["../../client/useRouter.ts"],"names":[],"mappings":"AAAA,wBAAgB,SAAS,SAAK"}