Skip to content

Commit 48c5e34

Browse files
committed
refactor: use turborepo, update to react@19
1 parent 05b3289 commit 48c5e34

72 files changed

Lines changed: 3444 additions & 3540 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 33 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,38 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
pnpm-debug.log*
8-
lerna-debug.log*
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
92

3+
# Dependencies
104
node_modules
5+
.pnp
6+
.pnp.js
7+
8+
# Local env files
9+
.env
10+
.env.local
11+
.env.development.local
12+
.env.test.local
13+
.env.production.local
14+
15+
# Testing
16+
coverage
17+
18+
# Turbo
19+
.turbo
20+
21+
# Vercel
22+
.vercel
23+
24+
# Build Outputs
25+
.next/
26+
out/
27+
build
1128
dist
12-
dist-ssr
13-
*.local
1429

15-
# Editor directories and files
16-
.vscode/*
17-
!.vscode/extensions.json
18-
.idea
30+
31+
# Debug
32+
npm-debug.log*
33+
yarn-debug.log*
34+
yarn-error.log*
35+
36+
# Misc
1937
.DS_Store
20-
*.suo
21-
*.ntvs*
22-
*.njsproj
23-
*.sln
24-
*.sw?
25-
26-
# test
27-
/coverage
38+
*.pem

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"biome.enabled": false
3+
}
File renamed without changes.

apps/dev/.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
26+
# test
27+
/coverage

apps/dev/README.md

Lines changed: 2 additions & 0 deletions
File renamed without changes.

apps/dev/package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "dev",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "vite",
7+
"build": "vite build",
8+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
9+
"preview": "vite preview"
10+
},
11+
"dependencies": {},
12+
"devDependencies": {
13+
"he-tree-react": "workspace:*",
14+
"react": "^19",
15+
"react-dom": "^19",
16+
"@types/react": "^19",
17+
"@types/react-dom": "^19",
18+
"@typescript-eslint/eslint-plugin": "^8",
19+
"@typescript-eslint/parser": "^8",
20+
"@unocss/reset": "^66",
21+
"@vitejs/plugin-react": "^5",
22+
"eslint": "^9",
23+
"eslint-plugin-react-hooks": "^7",
24+
"eslint-plugin-react-refresh": "^0.5.2",
25+
"immer": "^10.0.3",
26+
"react-router-dom": "^7",
27+
"typescript": "^5.2.2",
28+
"unocss": "^66",
29+
"use-immer": "^0.11.0",
30+
"vite": "^7",
31+
"vite-plugin-dts": "^4"
32+
}
33+
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)