Просмотр исходного кода

Merge pull request #62 from dragooncjw/fix/dep-check

fix: demo & test
chenjiawei.inizio 9 месяцев назад
Родитель
Сommit
5dd4a21059

+ 3 - 3
.github/CODEOWNERS

@@ -4,6 +4,6 @@
 
 # 对特定目录设置代码负责人
 /apps/docs/ @xiamidaxia @dragooncjw @YuanHeDx
-/apps/demo-node-form/ @YuanHeDx
-/packages/node-engine/ @YuanHeDx
-/packages/plugins/node-core-plugin/ @YuanHeDx
+/apps/demo-node-form/ @xiamidaxia @YuanHeDx
+/packages/node-engine/ @xiamidaxia @YuanHeDx
+/packages/plugins/node-core-plugin/ @xiamidaxia @YuanHeDx

+ 1 - 1
apps/demo-fixed-layout-simple/package.json

@@ -11,7 +11,7 @@
     ".gitignore",
     "index.html",
     "package.json",
-    "rspack.config.js",
+    "rsbuild.config.ts",
     "tsconfig.json"
   ],
   "scripts": {

+ 1 - 1
apps/demo-fixed-layout/package.json

@@ -11,7 +11,7 @@
     ".gitignore",
     "index.html",
     "package.json",
-    "rspack.config.js",
+    "rsbuild.config.ts",
     "tsconfig.json"
   ],
   "scripts": {

+ 1 - 1
apps/demo-free-layout-simple/package.json

@@ -11,7 +11,7 @@
     ".gitignore",
     "index.html",
     "package.json",
-    "rspack.config.js",
+    "rsbuild.config.ts",
     "tsconfig.json"
   ],
   "scripts": {

+ 1 - 1
apps/demo-free-layout/package.json

@@ -11,7 +11,7 @@
     ".gitignore",
     "index.html",
     "package.json",
-    "rspack.config.js",
+    "rsbuild.config.ts",
     "tsconfig.json"
   ],
   "scripts": {

+ 1 - 1
apps/demo-node-form/package.json

@@ -11,7 +11,7 @@
     ".gitignore",
     "index.html",
     "package.json",
-    "rspack.config.js",
+    "rsbuild.config.ts",
     "tsconfig.json"
   ],
   "scripts": {

+ 2 - 1
cspell.json

@@ -9,7 +9,8 @@
     "douyinfe",
     "Sandpack",
     "codesandbox",
-    "rspack"
+    "rspack",
+    "rsbuild"
   ],
   "ignoreWords": [],
   "import": []

+ 1 - 1
packages/canvas-engine/free-layout-core/__tests__/service/workflow-drag-service.test.ts

@@ -28,7 +28,7 @@ async function fireMouseEvent(type: string, point: IPoint): Promise<void> {
       clientY: point.y,
     })
   );
-  await waitFor(() => {}, { timeout: 1 });
+  await waitFor(() => {}, { timeout: 100 });
 }
 
 describe('workflow-drag-service', () => {