@modern-js/utils 2.37.1 → 2.38.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -125,7 +125,9 @@ const CHAIN_ID = {
|
|
125
125
|
/** builder-plugin-image-compress svgo-loader */
|
126
126
|
SVGO: "svgo",
|
127
127
|
/** builder-plugin-imagex */
|
128
|
-
IMAGEX: "imagex"
|
128
|
+
IMAGEX: "imagex",
|
129
|
+
/** storybook-react-docgen */
|
130
|
+
REACT_DOCGEN: "react-docgen"
|
129
131
|
},
|
130
132
|
/** Predefined plugins */
|
131
133
|
PLUGIN: {
|
@@ -102,7 +102,9 @@ var CHAIN_ID = {
|
|
102
102
|
/** builder-plugin-image-compress svgo-loader */
|
103
103
|
SVGO: "svgo",
|
104
104
|
/** builder-plugin-imagex */
|
105
|
-
IMAGEX: "imagex"
|
105
|
+
IMAGEX: "imagex",
|
106
|
+
/** storybook-react-docgen */
|
107
|
+
REACT_DOCGEN: "react-docgen"
|
106
108
|
},
|
107
109
|
/** Predefined plugins */
|
108
110
|
PLUGIN: {
|
@@ -102,7 +102,9 @@ const CHAIN_ID = {
|
|
102
102
|
/** builder-plugin-image-compress svgo-loader */
|
103
103
|
SVGO: "svgo",
|
104
104
|
/** builder-plugin-imagex */
|
105
|
-
IMAGEX: "imagex"
|
105
|
+
IMAGEX: "imagex",
|
106
|
+
/** storybook-react-docgen */
|
107
|
+
REACT_DOCGEN: "react-docgen"
|
106
108
|
},
|
107
109
|
/** Predefined plugins */
|
108
110
|
PLUGIN: {
|
@@ -103,6 +103,8 @@ export declare const CHAIN_ID: {
|
|
103
103
|
readonly SVGO: "svgo";
|
104
104
|
/** builder-plugin-imagex */
|
105
105
|
readonly IMAGEX: "imagex";
|
106
|
+
/** storybook-react-docgen */
|
107
|
+
readonly REACT_DOCGEN: "react-docgen";
|
106
108
|
};
|
107
109
|
/** Predefined plugins */
|
108
110
|
readonly PLUGIN: {
|
@@ -4,5 +4,5 @@ type RunTaskType = (option: {
|
|
4
4
|
changedFilePath: string;
|
5
5
|
changeType: WatchChangeTypeValueT;
|
6
6
|
}) => void | Promise<void>;
|
7
|
-
export declare const watch: (watchDir: string | string[], runTask: RunTaskType, ignored?: string[]) => import("../compiled").FSWatcher;
|
7
|
+
export declare const watch: (watchDir: string | string[], runTask: RunTaskType, ignored?: (string | RegExp)[]) => import("../compiled").FSWatcher;
|
8
8
|
export {};
|
package/package.json
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
"modern",
|
16
16
|
"modern.js"
|
17
17
|
],
|
18
|
-
"version": "2.
|
18
|
+
"version": "2.38.0",
|
19
19
|
"jsnext:source": "./src/index.ts",
|
20
20
|
"types": "./dist/types/index.d.ts",
|
21
21
|
"main": "./dist/cjs/index.js",
|
@@ -169,9 +169,9 @@
|
|
169
169
|
"jest": "^29",
|
170
170
|
"typescript": "^5",
|
171
171
|
"webpack": "^5.88.1",
|
172
|
-
"@modern-js/types": "2.
|
173
|
-
"@scripts/build": "2.
|
174
|
-
"@scripts/jest-config": "2.
|
172
|
+
"@modern-js/types": "2.38.0",
|
173
|
+
"@scripts/build": "2.38.0",
|
174
|
+
"@scripts/jest-config": "2.38.0"
|
175
175
|
},
|
176
176
|
"sideEffects": false,
|
177
177
|
"scripts": {
|