Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monorepo refactor #13

Merged
merged 12 commits into from
Dec 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Move frontend -> apps/react-frontend
NigelBreslaw committed Dec 25, 2023
commit 97fb11686ca83a85683275876a32a519ece4926b
File renamed without changes.
25 changes: 25 additions & 0 deletions apps/react-frontend/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "@GG-monorepo/react-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"analyze": "source-map-explorer dist/**/*.js",
"dev": "vite",
"build": "tsc && bun --bun vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"source-map-explorer": "2.5.3"
},
"devDependencies": {
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@vitejs/plugin-react-swc": "3.5.0",
"typescript": "5.3.3",
"vite": "5.0.10",
"vite-plugin-mkcert": "1.17.1"
}
}
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
29 changes: 10 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,20 @@
{
"name": "web-ishtar",
"name": "@GG-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"analyze": "source-map-explorer dist/**/*.js",
"dev": "vite",
"build": "tsc && bun --bun vite build",
"lint": "biome lint ./src",
"format:check": "biome format ./src",
"format:write": "biome format --write ./src",
"preview": "vite preview"
"lint": "biome lint .",
"format:check": "biome format .",
"format:write": "biome format --write ."
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"source-map-explorer": "2.5.3"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@vitejs/plugin-react-swc": "3.5.0",
"typescript": "5.3.3",
"vite": "5.0.10",
"vite-plugin-mkcert": "1.17.1"
}
"@biomejs/biome": "1.4.1"
},
"workspaces": [
"apps/*",
"docs/*"
]
}
4 changes: 4 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
packages:
# all packages in direct subdirs of packages/
- "apps/*"
- "docs/*"