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

@@ -32,15 +32,15 @@ export default defineConfig({
resolve: {
alias: {
// Mirror main Vitest config so E2E tests can resolve package paths
'@gridpilot/shared-result': path.resolve(__dirname, 'packages/shared/result/Result.ts'),
'@gridpilot/automation': path.resolve(__dirname, 'packages/automation'),
'@gridpilot/automation/*': path.resolve(__dirname, 'packages/automation/*'),
'@gridpilot/testing-support': path.resolve(__dirname, 'packages/testing-support'),
'@gridpilot/media': path.resolve(__dirname, 'packages/media'),
'@gridpilot/shared-result': path.resolve(__dirname, 'core/shared/result/Result.ts'),
'@gridpilot/automation': path.resolve(__dirname, 'core/automation'),
'@gridpilot/automation/*': path.resolve(__dirname, 'core/automation/*'),
'@gridpilot/testing-support': path.resolve(__dirname, 'core/testing-support'),
'@gridpilot/media': path.resolve(__dirname, 'core/media'),
'@': path.resolve(__dirname, 'apps/website'),
'@/*': path.resolve(__dirname, 'apps/website/*'),
packages: path.resolve(__dirname, 'packages'),
'packages/*': path.resolve(__dirname, 'packages/*'),
'core/*': path.resolve(__dirname, 'core/*'),
},
},
});