1
0
mirror of synced 2025-12-08 10:07:54 +08:00

refactor: 将data-source,dep,schema,utils收敛到core,将form,table,stage,design,util收敛到editor

This commit is contained in:
roymondchen
2024-09-04 17:25:33 +08:00
committed by roymondchen
parent c3bc1035ad
commit 34fc0a15b9
212 changed files with 634 additions and 778 deletions

View File

@@ -50,16 +50,16 @@ export default defineConfig({
replacement: path.join(__dirname, '../packages/editor/src/theme/index.scss'),
},
{
find: /^@tmagic\/form\/dist\/style.css/,
find: /^@tmagic\/form\/src\/theme\/index.scss/,
replacement: path.join(__dirname, '../packages/form/src/theme/index.scss'),
},
{
find: /^@tmagic\/table\/dist\/style.css/,
replacement: path.join(__dirname, '../packages/table/dist/style.css'),
find: /^@tmagic\/table\/src\/theme\/index.scss/,
replacement: path.join(__dirname, '../packages/table/src/theme/index.scss'),
},
{
find: /^@tmagic\/design\/dist\/style.css/,
replacement: path.join(__dirname, '../packages/design/dist/style.css'),
find: /^@tmagic\/design\/src\/theme\/index.scss/,
replacement: path.join(__dirname, '../packages/design/src/theme/index.scss'),
},
{ find: /^@tmagic\/core/, replacement: path.join(__dirname, '../packages/core/src/index.ts') },
{ find: /^@editor/, replacement: path.join(__dirname, '../packages/editor/src/') },