@next-core/brick-utils 2.45.17 → 2.45.19

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.
@@ -6,7 +6,10 @@ interface DllAndDeps {
6
6
  }
7
7
  interface DllAndDepsAndBricks extends DllAndDeps {
8
8
  bricks: string[];
9
- byProcessors: DllAndDeps;
9
+ /**
10
+ * Some deps required eager loading, such as processors and widgets.
11
+ */
12
+ eager: DllAndDeps;
10
13
  }
11
14
  export declare function getDllAndDepsOfStoryboard(storyboard: Storyboard, brickPackages: BrickPackage[], options?: ScanBricksOptions): DllAndDepsAndBricks;
12
15
  export declare function getDllAndDepsOfBricks(bricks: string[], brickPackages: BrickPackage[]): DllAndDeps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/brick-utils",
3
- "version": "2.45.17",
3
+ "version": "2.45.19",
4
4
  "description": "Pure utility functions for kernel",
5
5
  "homepage": "https://github.com/easyops-cn/next-core/tree/master/packages/brick-utils",
6
6
  "license": "GPL-3.0",
@@ -29,9 +29,9 @@
29
29
  },
30
30
  "sideEffects": false,
31
31
  "dependencies": {
32
- "@next-core/brick-types": "^2.82.3",
33
- "@next-core/cook": "^1.6.81",
34
- "@next-core/storyboard": "^0.3.3",
32
+ "@next-core/brick-types": "^2.82.4",
33
+ "@next-core/cook": "^1.6.82",
34
+ "@next-core/storyboard": "^0.3.4",
35
35
  "file-saver": "^2.0.5",
36
36
  "path-to-regexp": "^6.2.1"
37
37
  },
@@ -48,5 +48,5 @@
48
48
  "lodash": "*",
49
49
  "moment": "*"
50
50
  },
51
- "gitHead": "898a90fe4b59f4b6be3d1e3e0d67be4a6411d060"
51
+ "gitHead": "80bde8cd70f27fe92d91a843152ec247737d4838"
52
52
  }