refactor(editor): Extract root store into @n8n/stores package (no-changelog) (#15412)

This commit is contained in:
Alex Grozav
2025-05-16 14:18:16 +03:00
committed by GitHub
parent 907485d016
commit de4c5fc716
161 changed files with 530 additions and 318 deletions

View File

@@ -35,6 +35,10 @@ const alias = [
find: /^@n8n\/design-system(.+)$/,
replacement: resolve(packagesDir, 'frontend', '@n8n', 'design-system', 'src$1'),
},
{
find: /^@n8n\/stores(.+)$/,
replacement: resolve(packagesDir, 'frontend', '@n8n', 'stores', 'src$1'),
},
{
find: /^@n8n\/utils(.+)$/,
replacement: resolve(packagesDir, '@n8n', 'utils', 'src$1'),