Skip to content

Commit 9d5c1b5

Browse files
committed
Setup Turborepo
1 parent 14d5ec2 commit 9d5c1b5

21 files changed

+170
-996
lines changed

.gitignore

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# dependencies
2+
node_modules
3+
/.pnp
4+
.pnp.js
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
/dist
12+
13+
# misc
14+
.DS_Store
15+
.env
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
25+
# turbo
26+
.turbo
27+
28+
# SST
29+
.sst
30+
.build
31+
.open-next

apps/api/biome.json

-30
This file was deleted.

apps/api/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"type": "module",
77
"scripts": {
88
"dev": "sst dev --stage dev",
9-
"test": "vitest",
10-
"test:coverage": "vitest --coverage",
9+
"test": "vitest run",
10+
"test:watch": "vitest",
11+
"test:coverage": "vitest run --coverage",
1112
"deploy": "sst deploy",
1213
"remove": "sst remove",
1314
"console": "sst console",
14-
"typecheck": "tsc --noEmit",
1515
"lint": "biome check ."
1616
},
1717
"dependencies": {

apps/api/src/lib/__tests__/groupMonthsByYear.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { describe, it, expect } from "vitest";
1+
import { describe, expect, it } from "vitest";
22
import { groupMonthsByYear } from "../groupMonthsByYear";
33

44
describe("groupMonthsByYear", () => {

apps/api/tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@
88
"paths": {
99
"@api/*": ["src/*"]
1010
}
11-
},
12-
"include": ["**/*.ts"]
11+
}
1312
}

apps/updater/biome.json

-33
This file was deleted.

apps/updater/migrations/0000_init.sql

-33
This file was deleted.

apps/updater/migrations/0001_narrow_molly_hayes.sql

-10
This file was deleted.

0 commit comments

Comments
 (0)