@next-core/brick-utils 2.32.6 → 2.34.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/CHANGELOG.md +24 -33
- package/dist/index.bundle.js +1398 -818
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +1397 -819
- package/dist/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/resolveContextConcurrently.d.ts +3 -2
- package/dist/types/{trackContext.d.ts → track.d.ts} +1 -0
- package/dist/types/{trackContext.spec.d.ts → track.spec.d.ts} +0 -0
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ContextConf } from "@next-core/brick-types";
|
|
2
|
-
export declare function resolveContextConcurrently(contextConfs: ContextConf[], resolveContext: (contextConf: ContextConf) => Promise<boolean
|
|
2
|
+
export declare function resolveContextConcurrently(contextConfs: ContextConf[], resolveContext: (contextConf: ContextConf) => Promise<boolean>, keyword?: string): Promise<void>;
|
|
3
|
+
export declare function syncResolveContextConcurrently(contextConfs: ContextConf[], resolveContext: (contextConf: ContextConf) => boolean, keyword?: string): void;
|
|
3
4
|
interface ContextStatistics {
|
|
4
5
|
dependencies: string[];
|
|
5
6
|
includesComputed: boolean;
|
|
6
7
|
}
|
|
7
|
-
export declare function getDependencyMapOfContext(contextConfs: ContextConf[]): Map<ContextConf, ContextStatistics>;
|
|
8
|
+
export declare function getDependencyMapOfContext(contextConfs: ContextConf[], keyword?: string): Map<ContextConf, ContextStatistics>;
|
|
8
9
|
export {};
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-core/brick-utils",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.34.1",
|
|
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,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@next-core/brick-types": "^2.
|
|
33
|
-
"@next-core/cook": "^1.6.
|
|
32
|
+
"@next-core/brick-types": "^2.57.0",
|
|
33
|
+
"@next-core/cook": "^1.6.11",
|
|
34
34
|
"file-saver": "^2.0.5",
|
|
35
35
|
"path-to-regexp": "^6.2.0"
|
|
36
36
|
},
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"lodash": "*",
|
|
47
47
|
"moment": "*"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "109c4bb73b68e9b6ca8f00359ee38e5317103734"
|
|
50
50
|
}
|