@bundle-stats/utils 4.18.3 → 4.19.0-beta.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bundle-stats/utils",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.19.0-beta.2",
|
|
4
4
|
"description": "BundleStats utils",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib-esm/index.js",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://github.com/relative-ci/bundle-stats/blob/master/packages/utils#readme",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@bundle-stats/plugin-webpack-filter": "
|
|
39
|
-
"@bundle-stats/plugin-webpack-validate": "
|
|
38
|
+
"@bundle-stats/plugin-webpack-filter": "4.19.0-beta.2",
|
|
39
|
+
"@bundle-stats/plugin-webpack-validate": "4.19.0-beta.2",
|
|
40
40
|
"serialize-query-params": "2.0.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/jest": "29.5.14",
|
|
44
|
-
"@types/lodash": "4.17.
|
|
45
|
-
"core-js": "3.
|
|
44
|
+
"@types/lodash": "4.17.16",
|
|
45
|
+
"core-js": "3.41.0",
|
|
46
46
|
"jest": "29.7.0",
|
|
47
47
|
"jest-cli": "29.7.0",
|
|
48
48
|
"jest-date-mock": "1.0.10",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"regenerator-runtime": "0.14.1",
|
|
51
51
|
"rimraf": "6.0.1",
|
|
52
52
|
"ts-jest": "29.2.6",
|
|
53
|
-
"typescript": "5.
|
|
53
|
+
"typescript": "5.8.2"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"core-js": "^3.0.0",
|
|
57
57
|
"lodash": "^4.0.0"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "35e4b93f48438a65a5934eda1519a5b045cc18e9"
|
|
60
60
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { QueryParamConfig } from 'serialize-query-params';
|
|
2
|
+
import { COMPONENT } from '../config/component-links';
|
|
2
3
|
export type ComponentLinkFilters = Record<string, boolean | string>;
|
|
3
4
|
export interface ComponentLinkParams {
|
|
4
5
|
search?: string;
|
|
@@ -43,7 +44,9 @@ export declare const BUNDLE_PACKAGES_DUPLICATE_CHANGED: ComponentLink;
|
|
|
43
44
|
export declare const getBundlePackagesByNameComponentLink: (search: string) => ComponentLink;
|
|
44
45
|
export declare const ComponentStateParam: QueryParamConfig<any, any>;
|
|
45
46
|
export declare const COMPONENT_STATE_META: {
|
|
46
|
-
readonly [
|
|
47
|
+
readonly [COMPONENT.BUNDLE_ASSETS]: QueryParamConfig<any, any>;
|
|
48
|
+
readonly [COMPONENT.BUNDLE_MODULES]: QueryParamConfig<any, any>;
|
|
49
|
+
readonly [COMPONENT.BUNDLE_PACKAGES]: QueryParamConfig<any, any>;
|
|
47
50
|
};
|
|
48
51
|
type ComponentStateQueryStringParams = Record<string, ComponentLinkParams>;
|
|
49
52
|
export declare const getComponentStateQueryString: (params?: ComponentStateQueryStringParams) => string;
|