From b75c5ab27215fceb55a15491028151321ef0177a Mon Sep 17 00:00:00 2001 From: data Date: Fri, 16 Sep 2022 09:39:55 +0800 Subject: [PATCH 1/3] auto upgrade version to 2.0.20220916093936 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3bebb0e3a..bea49278e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220914200441", + "version": "2.0.20220916093936", "description": "fineui", "main": "dist/fineui_without_conflict.min.js", "types": "dist/lib/index.d.ts", From b26afd047d2e3cacce574eb77c269e50dcf91c5b Mon Sep 17 00:00:00 2001 From: iapyang Date: Fri, 16 Sep 2022 13:58:29 +0800 Subject: [PATCH 2/3] chore: update --- plugins/webpack-fui-worker-plugin/worker-loader.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/plugins/webpack-fui-worker-plugin/worker-loader.js b/plugins/webpack-fui-worker-plugin/worker-loader.js index 23be31927..c9dad87d5 100644 --- a/plugins/webpack-fui-worker-plugin/worker-loader.js +++ b/plugins/webpack-fui-worker-plugin/worker-loader.js @@ -117,16 +117,13 @@ function loader() { // 添加 @ts-nocheck 避免 ts-check 报错 // 修复export const 下 const不会被转译的问题 `// @ts-nocheck - const blob = new Blob([${JSON.stringify(compilation.assets[entry].source())}]); - const workerUrl = window.URL.createObjectURL(blob); - export default workerUrl; + export default window.URL.createObjectURL(new Blob([${JSON.stringify(compilation.assets[entry].source())}])); ` ) : callback( null, `// @ts-nocheck - const servicePath = __webpack_public_path__ + ${JSON.stringify(entry)}; - export default servicePath; + export default __webpack_public_path__ + ${JSON.stringify(entry)}; ` ) }); From e62789b795bd5bbc286cad02ac76910f5868c76d Mon Sep 17 00:00:00 2001 From: data Date: Fri, 16 Sep 2022 14:24:32 +0800 Subject: [PATCH 3/3] auto upgrade version to 2.0.20220916142417 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bea49278e..528ee1a3e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220916093936", + "version": "2.0.20220916142417", "description": "fineui", "main": "dist/fineui_without_conflict.min.js", "types": "dist/lib/index.d.ts",