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:
Daniel Luiz Alves
2025-07-07 01:29:58 -03:00
parent 82842508ef
commit b908dcf69d
12 changed files with 5675 additions and 17384 deletions

3
.gitignore vendored
View File

@@ -32,7 +32,4 @@ apps/server/dist/*
.env
data/
# Turborepo
.turbo/
node_modules/

View 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

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@

> palmr-api@3.1-beta lint /Users/daniel/clones/Palmr/apps/server
> eslint "src/**/*.+(ts|tsx)"

View File

@@ -73,4 +73,4 @@
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}
}

File diff suppressed because it is too large Load Diff

View 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

File diff suppressed because it is too large Load Diff

View File

@@ -5,23 +5,9 @@
"private": true,
"packageManager": "pnpm@10.6.0",
"scripts": {
"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"
"prepare": "git config core.hooksPath .husky && husky"
},
"devDependencies": {
"husky": "^9.1.7",
"turbo": "^2.5.4"
"husky": "^9.1.7"
}
}

10408
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,2 +0,0 @@
packages:
- "apps/*"

View File

@@ -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"
]
}
}
}