mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-22 22:02:00 +00:00
chore: clean up project configuration and dependencies
- Removed unused Turborepo configuration files and updated the .gitignore to exclude unnecessary directories. - Simplified package.json scripts by removing redundant entries related to Turborepo. - Updated dependencies in pnpm-lock.yaml and package.json for various packages, ensuring compatibility and improved performance. - Enhanced pnpm workspace configuration by removing obsolete entries and ensuring consistency across applications. - Added new lint log files for server and web applications to track linting processes.
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -32,7 +32,4 @@ apps/server/dist/*
|
|||||||
.env
|
.env
|
||||||
data/
|
data/
|
||||||
|
|
||||||
# Turborepo
|
|
||||||
.turbo/
|
|
||||||
|
|
||||||
node_modules/
|
node_modules/
|
5
apps/docs/.turbo/turbo-lint.log
Normal file
5
apps/docs/.turbo/turbo-lint.log
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
|
||||||
|
> palmr-docs@3.1-beta lint /Users/daniel/clones/Palmr/apps/docs
|
||||||
|
> eslint "src/**/*.+(ts|tsx)"
|
||||||
|
|
5348
apps/docs/pnpm-lock.yaml
generated
5348
apps/docs/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
5
apps/server/.turbo/turbo-lint.log
Normal file
5
apps/server/.turbo/turbo-lint.log
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
|
||||||
|
> palmr-api@3.1-beta lint /Users/daniel/clones/Palmr/apps/server
|
||||||
|
> eslint "src/**/*.+(ts|tsx)"
|
||||||
|
|
@@ -73,4 +73,4 @@
|
|||||||
"tsx": "^4.19.2",
|
"tsx": "^4.19.2",
|
||||||
"typescript": "^5.7.3"
|
"typescript": "^5.7.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2538
apps/server/pnpm-lock.yaml
generated
2538
apps/server/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
5
apps/web/.turbo/turbo-lint.log
Normal file
5
apps/web/.turbo/turbo-lint.log
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
|
||||||
|
> palmr-web@3.1-beta lint /Users/daniel/clones/Palmr/apps/web
|
||||||
|
> eslint "src/**/*.+(ts|tsx)"
|
||||||
|
|
4681
apps/web/pnpm-lock.yaml
generated
4681
apps/web/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
18
package.json
18
package.json
@@ -5,23 +5,9 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"packageManager": "pnpm@10.6.0",
|
"packageManager": "pnpm@10.6.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepare": "git config core.hooksPath .husky && husky",
|
"prepare": "git config core.hooksPath .husky && husky"
|
||||||
"postinstall": "cd apps/server && npx prisma generate",
|
|
||||||
"dev": "turbo run dev --ui=tui",
|
|
||||||
"dev:web": "turbo run dev --filter=palmr-web --ui=tui",
|
|
||||||
"dev:server": "turbo run dev --filter=palmr-api --ui=tui",
|
|
||||||
"dev:docs": "turbo run dev --filter=palmr-docs --ui=tui",
|
|
||||||
"dev:fullstack": "turbo run dev --filter=palmr-web --filter=palmr-api --ui=tui",
|
|
||||||
"build": "turbo run build",
|
|
||||||
"lint": "turbo run lint",
|
|
||||||
"lint:fix": "turbo run lint:fix",
|
|
||||||
"format": "turbo run format",
|
|
||||||
"format:check": "turbo run format:check",
|
|
||||||
"type-check": "turbo run type-check",
|
|
||||||
"validate": "turbo run validate"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7"
|
||||||
"turbo": "^2.5.4"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
10408
pnpm-lock.yaml
generated
10408
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,2 +0,0 @@
|
|||||||
packages:
|
|
||||||
- "apps/*"
|
|
44
turbo.json
44
turbo.json
@@ -1,44 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "./node_modules/turbo/schema.json",
|
|
||||||
"tasks": {
|
|
||||||
"dev": {
|
|
||||||
"cache": false,
|
|
||||||
"persistent": true,
|
|
||||||
"interactive": true
|
|
||||||
},
|
|
||||||
"build": {
|
|
||||||
"dependsOn": [
|
|
||||||
"^build"
|
|
||||||
],
|
|
||||||
"outputs": [
|
|
||||||
"dist/**",
|
|
||||||
".next/**"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"lint": {
|
|
||||||
"dependsOn": [
|
|
||||||
"^build"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"lint:fix": {
|
|
||||||
"dependsOn": [
|
|
||||||
"^build"
|
|
||||||
],
|
|
||||||
"cache": false
|
|
||||||
},
|
|
||||||
"format": {
|
|
||||||
"cache": false
|
|
||||||
},
|
|
||||||
"format:check": {},
|
|
||||||
"type-check": {
|
|
||||||
"dependsOn": [
|
|
||||||
"^build"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"validate": {
|
|
||||||
"dependsOn": [
|
|
||||||
"^build"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Reference in New Issue
Block a user