chore: clean up root configuration files
CI / Web CI (push) Failing after 9s
CI / API CI (push) Failing after 10s

- Remove redundant .npmrc (ignore-build-scripts=false is default)
- Remove Makefile (scripts available in package.json)
- Simplify root package.json:
  - Remove duplicate pnpm keys
  - Remove frontend-specific esbuild config (already in apps/web/package.json)
  - Remove version/description (not needed for private workspace root)
  - Remove compose scripts (use docker compose directly)
- Clean pnpm-workspace.yaml:
  - Remove placeholder allowBuilds comment
  - Remove onlyBuiltDependencies (handled per-workspace)
This commit is contained in:
2026-05-16 14:14:12 +02:00
parent aef6cbb2b1
commit 533d50dd01
4 changed files with 2 additions and 51 deletions
-1
View File
@@ -1 +0,0 @@
ignore-build-scripts=false
-29
View File
@@ -1,29 +0,0 @@
.PHONY: install lint test typecheck build dev compose-up compose-down clean
install:
npx pnpm@11.1.1 install
cd apps/api && python3 -m venv .venv && .venv/bin/pip install -e ".[dev]"
lint:
npx pnpm@11.1.1 lint
test:
npx pnpm@11.1.1 test
typecheck:
npx pnpm@11.1.1 typecheck
build:
npx pnpm@11.1.1 build
dev:
npx pnpm@11.1.1 dev
compose-up:
docker compose up --build -d
compose-down:
docker compose down
clean:
rm -rf node_modules apps/web/node_modules apps/api/.venv .pnpm-store/
+2 -17
View File
@@ -1,26 +1,11 @@
{
"name": "headquarter",
"version": "0.0.1",
"private": true,
"description": "Hosted workspace and tool-orchestration platform",
"packageManager": "pnpm@11.1.1",
"scripts": {
"lint": "pnpm --filter @headquarter/web lint && pnpm --filter @headquarter/api lint",
"test": "pnpm --filter @headquarter/web test && pnpm --filter @headquarter/api test",
"typecheck": "pnpm --filter @headquarter/web typecheck && pnpm --filter @headquarter/api typecheck",
"build": "pnpm --filter @headquarter/web build && pnpm --filter @headquarter/api build",
"dev": "pnpm --parallel --filter @headquarter/web --filter @headquarter/api dev",
"compose:up": "docker compose up --build -d",
"compose:down": "docker compose down"
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"packageManager": "pnpm@11.1.1",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
"dev": "pnpm --parallel --filter @headquarter/web --filter @headquarter/api dev"
}
}
-4
View File
@@ -1,7 +1,3 @@
packages:
- 'apps/*'
- 'packages/*'
allowBuilds:
esbuild: set this to true or false
onlyBuiltDependencies:
- esbuild