rename to core

This commit is contained in:
2025-12-15 13:46:07 +01:00
parent aedf58643d
commit 5c22f8820c
559 changed files with 415 additions and 767 deletions

View File

@@ -12,7 +12,7 @@ RUN find ./node_modules -name "next" -print || true # Debugging line
# Copy apps/website and packages for development
COPY apps/website apps/website/
COPY packages packages/
COPY packages core/
COPY apps/website/tsconfig.json apps/website/
COPY scripts scripts/
COPY tsconfig.base.json ./

View File

@@ -8,7 +8,7 @@ RUN npm ci
# Copy apps/website, packages, and config for building
COPY apps/website apps/website/
COPY packages packages/
COPY packages core/
COPY apps/website/tsconfig.json apps/website/
COPY scripts scripts/
COPY tsconfig.base.json ./

View File

@@ -12,11 +12,11 @@
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"@gridpilot/identity": "file:../../packages/identity",
"@gridpilot/notifications": "file:../../packages/notifications",
"@gridpilot/racing": "file:../../packages/racing",
"@gridpilot/social": "file:../../packages/social",
"@gridpilot/testing-support": "file:../../packages/testing-support",
"@gridpilot/identity": "file:../../core/identity",
"@gridpilot/notifications": "file:../../core/notifications",
"@gridpilot/racing": "file:../../core/racing",
"@gridpilot/social": "file:../../core/social",
"@gridpilot/testing-support": "file:../../core/testing-support",
"@vercel/kv": "^3.0.0",
"framer-motion": "^12.23.25",
"lucide-react": "^0.555.0",

View File

@@ -18,23 +18,23 @@
"@/lib/*": ["./lib/*"],
"@/components/*": ["./components/*"],
"@/app/*": ["./app/*"],
"@gridpilot/identity": ["../../packages/identity/index.ts"],
"@gridpilot/identity/*": ["../../packages/identity/*"],
"@gridpilot/racing": ["../../packages/racing/index.ts"],
"@gridpilot/racing/*": ["../../packages/racing/*"],
"@gridpilot/social": ["../../packages/social/index.ts"],
"@gridpilot/social/*": ["../../packages/social/*"],
"@gridpilot/testing-support": ["../../packages/testing-support/index.ts"],
"@gridpilot/testing-support/*": ["../../packages/testing-support/*"],
"@gridpilot/media": ["../../packages/media/index.ts"],
"@gridpilot/media/*": ["../../packages/media/*"],
"@gridpilot/shared": ["../../packages/shared/index.ts"],
"@gridpilot/shared/application": ["../../packages/shared/application"],
"@gridpilot/shared/application/*": ["../../packages/shared/application/*"],
"@gridpilot/shared/presentation": ["../../packages/shared/presentation"],
"@gridpilot/shared/presentation/*": ["../../packages/shared/presentation/*"],
"@gridpilot/shared/domain": ["../../packages/shared/domain"],
"@gridpilot/shared/errors": ["../../packages/shared/errors"]
"@gridpilot/identity": ["../../core/identity/index.ts"],
"@gridpilot/identity/*": ["../../core/identity/*"],
"@gridpilot/racing": ["../../core/racing/index.ts"],
"@gridpilot/racing/*": ["../../core/racing/*"],
"@gridpilot/social": ["../../core/social/index.ts"],
"@gridpilot/social/*": ["../../core/social/*"],
"@gridpilot/testing-support": ["../../core/testing-support/index.ts"],
"@gridpilot/testing-support/*": ["../../core/testing-support/*"],
"@gridpilot/media": ["../../core/media/index.ts"],
"@gridpilot/media/*": ["../../core/media/*"],
"@gridpilot/shared": ["../../core/shared/index.ts"],
"@gridpilot/shared/application": ["../../core/shared/application"],
"@gridpilot/shared/application/*": ["../../core/shared/application/*"],
"@gridpilot/shared/presentation": ["../../core/shared/presentation"],
"@gridpilot/shared/presentation/*": ["../../core/shared/presentation/*"],
"@gridpilot/shared/domain": ["../../core/shared/domain"],
"@gridpilot/shared/errors": ["../../core/shared/errors"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],