Skip to content

Commit aaed77e

Browse files
committed
chore: updates
1 parent 7d3744d commit aaed77e

File tree

9 files changed

+24
-1373
lines changed

9 files changed

+24
-1373
lines changed

deno.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@
1818
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
1919
"fmt": { "lineWidth": 100 },
2020
"compilerOptions": {
21-
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns", "deno.unstable"],
21+
"lib": [
22+
"dom",
23+
"dom.iterable",
24+
"dom.asynciterable",
25+
"deno.ns",
26+
"deno.unstable"
27+
],
2228
"jsx": "precompile",
2329
"jsxImportSource": "preact",
2430
"jsxImportSourceTypes": "npm:@types/[email protected]",
@@ -39,9 +45,9 @@
3945
"@/": "./",
4046
"fresh/": "https://deno.land/x/[email protected]/",
4147
"$fresh/": "https://deno.land/x/[email protected]/",
42-
"preact": "npm:[email protected].0",
43-
"react": "npm:[email protected].0/compat",
44-
"react-dom": "npm:[email protected].0/compat",
48+
"preact": "npm:[email protected].1",
49+
"react": "npm:[email protected].1/compat",
50+
"react-dom": "npm:[email protected].1/compat",
4551
"@preact/signals": "npm:@preact/[email protected]",
4652
"@preact/signals-core": "npm:@preact/[email protected]",
4753
"netzo/": "https://deno.land/x/[email protected]/",

deno.lock

Lines changed: 8 additions & 1362 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

islands/account/entries.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { toDate, toQRCode, useTableUtils, type Entry } from "@/mod.ts";
1+
import { type Entry, toDate, toQRCode, useTableUtils } from "@/mod.ts";
22
import { ENTRY_TYPE_OPTIONS } from "@/utils/constants.ts";
33
import { useSignal } from "@preact/signals";
44
import {

islands/account/guests.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { toQRCode, useTableUtils, type Guest } from "@/mod.ts";
1+
import { type Guest, toQRCode, useTableUtils } from "@/mod.ts";
22
import { USER_STATUS_OPTIONS } from "@/utils/constants.ts";
33
import { useSignal } from "@preact/signals";
44
import {

islands/account/statements.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { toDate, toMXN, useTableUtils, type Statement } from "@/mod.ts";
1+
import { type Statement, toDate, toMXN, useTableUtils } from "@/mod.ts";
22
import {
33
STATEMENT_STATUS_OPTIONS,
44
STATEMENT_TYPE_OPTIONS,

islands/account/users.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { toQRCode, useTableUtils, type User } from "@/mod.ts";
1+
import { toQRCode, type User, useTableUtils } from "@/mod.ts";
22
import { USER_STATUS_OPTIONS, USER_TYPE_OPTIONS } from "@/utils/constants.ts";
33
import { useSignal } from "@preact/signals";
44
import {

islands/bookings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { Booking, getBooking, getPublication } from "@/mod.ts";
22
import { Head } from "fresh/runtime.ts";
33
import {
44
Calendar,
5-
Views,
65
momentLocalizer,
6+
Views,
77
} from "https://esm.sh/[email protected]?external=react,react-dom&target=es2022";
88
import { Button } from "netzo/components/button.tsx";
99
import {

mod.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,3 @@ export * from "./datastore/slots.ts";
272272
export * from "./datastore/statements.ts";
273273
export * from "./datastore/users.ts";
274274
export * from "./datastore/vehicles.ts";
275-

tests/main.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "@std/assert";
2-
import { ServeHandlerInfo, createHandler } from "fresh/server.ts";
2+
import { createHandler, ServeHandlerInfo } from "fresh/server.ts";
33
import manifest from "../fresh.gen.ts";
44
import config from "../netzo.config.ts";
55

0 commit comments

Comments
 (0)