Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
toririm committed Oct 7, 2024
1 parent 16c4c66 commit 9956081
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"files": {
"ignore": ["**/node_modules/**", "./build", "./public/build"]
"ignore": ["**/node_modules/**", "**/build", "**/public/build"]
},
"formatter": {
"indentStyle": "space"
Expand Down
Binary file added bun.lockb
Binary file not shown.
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "cafeore-2024",
"workspaces": ["pos"],
"scripts": {
"sync": "bun install --frozen-lockfile"
},
"devDependencies": {
"@biomejs/biome": "1.9.3"
},
"trustedDependencies": ["@biomejs/biome"]
}
2 changes: 1 addition & 1 deletion pos/app/repositories/item.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { beforeAll, describe, expect, test } from "bun:test";
import { initializeTestEnvironment } from "@firebase/rules-unit-testing";
import type { Firestore } from "firebase/firestore";
import firebasejson from "~/../firebase.json";
import firebasejson from "~/../../firebase.json";
import type { WithId } from "~/lib/typeguard";
import { ItemEntity } from "~/models/item";

Expand Down
2 changes: 1 addition & 1 deletion pos/app/repositories/order.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { beforeAll, describe, expect, test } from "bun:test";
import { initializeTestEnvironment } from "@firebase/rules-unit-testing";
import type { Firestore } from "firebase/firestore";
import firebasejson from "~/../firebase.json";
import firebasejson from "~/../../firebase.json";
import type { WithId } from "~/lib/typeguard";
import { OrderEntity } from "~/models/order";
import { orderRepoFactory } from "./order";
Expand Down
Binary file removed pos/bun.lockb
Binary file not shown.

0 comments on commit 9956081

Please sign in to comment.