@next-core/brick-kit 2.162.0 → 2.162.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.bundle.js +4 -4
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +3 -3
package/dist/index.bundle.js
CHANGED
|
@@ -8243,13 +8243,13 @@
|
|
|
8243
8243
|
dll,
|
|
8244
8244
|
deps,
|
|
8245
8245
|
bricks,
|
|
8246
|
-
|
|
8246
|
+
eager
|
|
8247
8247
|
} = brickUtils.getDllAndDepsOfStoryboard(yield brickUtils.asyncProcessStoryboard(storyboard, brickTemplateRegistry, templatePackages), brickPackages, {
|
|
8248
8248
|
ignoreBricksInUnusedCustomTemplates: true
|
|
8249
8249
|
});
|
|
8250
|
-
// 需要先阻塞加载 Custom Processors。
|
|
8251
|
-
yield loadScriptOfDll(
|
|
8252
|
-
yield loadScriptOfBricksOrTemplates(
|
|
8250
|
+
// 需要先阻塞加载 Custom Processors 和 widgets。
|
|
8251
|
+
yield loadScriptOfDll(eager.dll);
|
|
8252
|
+
yield loadScriptOfBricksOrTemplates(eager.deps);
|
|
8253
8253
|
// 加载构件资源时,不再阻塞后续业务数据的加载,在挂载构件时再等待该任务完成。
|
|
8254
8254
|
// 挂载构件可能包括:Provider 构件实时挂载、路由准备完成后的统一挂载等。
|
|
8255
8255
|
return {
|