@next-core/brick-utils 2.51.1 → 2.51.2
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.
|
@@ -13,12 +13,16 @@ interface DllAndDepsAndBricks extends DllAndDeps {
|
|
|
13
13
|
*/
|
|
14
14
|
eager: DllAndDeps;
|
|
15
15
|
}
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
interface BrickPackageV3 extends BrickPackage {
|
|
17
|
+
id?: string;
|
|
18
|
+
elements?: string[];
|
|
19
|
+
}
|
|
20
|
+
export declare function getDllAndDepsOfStoryboard(storyboard: Storyboard, brickPackages: BrickPackageV3[], options?: ScanBricksOptions): DllAndDepsAndBricks;
|
|
21
|
+
export declare function getDllAndDepsOfBricks(bricks: string[], brickPackages: BrickPackageV3[]): DllAndDeps;
|
|
18
22
|
interface StoryboardResource {
|
|
19
23
|
bricks?: string[];
|
|
20
24
|
processors?: string[];
|
|
21
25
|
editorBricks?: string[];
|
|
22
26
|
}
|
|
23
|
-
export declare function getDllAndDepsByResource({ bricks, processors, editorBricks }: StoryboardResource, brickPackages:
|
|
27
|
+
export declare function getDllAndDepsByResource({ bricks, processors, editorBricks }: StoryboardResource, brickPackages: BrickPackageV3[]): DllAndDeps;
|
|
24
28
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-core/brick-utils",
|
|
3
|
-
"version": "2.51.
|
|
3
|
+
"version": "2.51.2",
|
|
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",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"lodash": "*",
|
|
49
49
|
"moment": "*"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "d663246ab624a2494893461b9d18c65c06c8b154"
|
|
52
52
|
}
|