@modern-js/core 2.20.0 → 2.21.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 +34 -0
- package/dist/context.d.ts +4 -5
- package/dist/context.js +1 -2
- package/dist/createCli.d.ts +1 -1
- package/dist/createCli.js +0 -1
- package/dist/index.d.ts +1 -1
- package/dist/loadPlugins.d.ts +1 -1
- package/dist/manager.d.ts +28 -28
- package/dist/types/coreOptions.d.ts +0 -2
- package/dist/utils/mergeConfig.d.ts +1 -1
- package/dist/utils/repeatKeyWarning.d.ts +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @modern-js/core
|
|
2
2
|
|
|
3
|
+
## 2.21.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @modern-js/node-bundle-require@2.21.1
|
|
8
|
+
- @modern-js/plugin@2.21.1
|
|
9
|
+
- @modern-js/utils@2.21.1
|
|
10
|
+
|
|
11
|
+
## 2.21.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- df43559: fix(core): toolsType is overridden when install multiple solutions
|
|
16
|
+
|
|
17
|
+
fix(core): 修复安装多个 solutions 时 toolsType 被覆盖的问题
|
|
18
|
+
|
|
19
|
+
- 26dcf3a: chore: bump typescript to v5 in devDependencies
|
|
20
|
+
|
|
21
|
+
chore: 升级 devDependencies 中的 typescript 版本到 v5
|
|
22
|
+
|
|
23
|
+
- ad78387: chore(deps): bump babel-related dependencies to latest version
|
|
24
|
+
|
|
25
|
+
chore(deps): 升级 babel 相关依赖到最新版本
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [e81eeaf]
|
|
28
|
+
- Updated dependencies [26dcf3a]
|
|
29
|
+
- Updated dependencies [056627f]
|
|
30
|
+
- Updated dependencies [0fc15ca]
|
|
31
|
+
- Updated dependencies [43b4e83]
|
|
32
|
+
- Updated dependencies [ad78387]
|
|
33
|
+
- @modern-js/utils@2.21.0
|
|
34
|
+
- @modern-js/node-bundle-require@2.21.0
|
|
35
|
+
- @modern-js/plugin@2.21.0
|
|
36
|
+
|
|
3
37
|
## 2.20.0
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/dist/context.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { CliPlugin, UserConfig, IAppContext, InternalPlugins, NormalizedConfig
|
|
1
|
+
import type { CliPlugin, UserConfig, IAppContext, InternalPlugins, NormalizedConfig } from './types';
|
|
2
2
|
export declare const AppContext: import("@modern-js/plugin").Context<IAppContext>;
|
|
3
|
-
export declare const ConfigContext: import("@modern-js/plugin").Context<UserConfig<any
|
|
4
|
-
export declare const ResolvedConfigContext: import("@modern-js/plugin").Context<NormalizedConfig<any
|
|
3
|
+
export declare const ConfigContext: import("@modern-js/plugin").Context<UserConfig<any>>;
|
|
4
|
+
export declare const ResolvedConfigContext: import("@modern-js/plugin").Context<NormalizedConfig<any>>;
|
|
5
5
|
/**
|
|
6
6
|
* Set app context.
|
|
7
7
|
* @param value new app context. It will override previous app context.
|
|
@@ -19,7 +19,7 @@ export declare const useConfigContext: <Extends extends Record<string, any>>() =
|
|
|
19
19
|
* Get normalized content of user config.
|
|
20
20
|
*/
|
|
21
21
|
export declare const useResolvedConfigContext: <Extends extends Record<string, any>>() => NormalizedConfig<Extends>;
|
|
22
|
-
export declare const initAppContext: ({ appDirectory, plugins, configFile, options, serverConfigFile, serverInternalPlugins,
|
|
22
|
+
export declare const initAppContext: ({ appDirectory, plugins, configFile, options, serverConfigFile, serverInternalPlugins, }: {
|
|
23
23
|
appDirectory: string;
|
|
24
24
|
plugins: CliPlugin[];
|
|
25
25
|
configFile: string | false;
|
|
@@ -32,5 +32,4 @@ export declare const initAppContext: ({ appDirectory, plugins, configFile, optio
|
|
|
32
32
|
} | undefined;
|
|
33
33
|
serverConfigFile: string;
|
|
34
34
|
serverInternalPlugins: InternalPlugins;
|
|
35
|
-
toolsType?: ToolsType | undefined;
|
|
36
35
|
}) => IAppContext;
|
package/dist/context.js
CHANGED
|
@@ -31,7 +31,7 @@ exports.useConfigContext = useConfigContext;
|
|
|
31
31
|
*/
|
|
32
32
|
const useResolvedConfigContext = () => exports.ResolvedConfigContext.use().value;
|
|
33
33
|
exports.useResolvedConfigContext = useResolvedConfigContext;
|
|
34
|
-
const initAppContext = ({ appDirectory, plugins, configFile, options, serverConfigFile, serverInternalPlugins,
|
|
34
|
+
const initAppContext = ({ appDirectory, plugins, configFile, options, serverConfigFile, serverInternalPlugins, }) => {
|
|
35
35
|
const { metaName = 'modern-js', srcDir = 'src', distDir = '', apiDir = 'api', sharedDir = 'shared', } = options || {};
|
|
36
36
|
return {
|
|
37
37
|
metaName,
|
|
@@ -57,7 +57,6 @@ const initAppContext = ({ appDirectory, plugins, configFile, options, serverConf
|
|
|
57
57
|
apiOnly: false,
|
|
58
58
|
internalDirAlias: `@_${metaName.replace(/-/g, '_')}_internal`,
|
|
59
59
|
internalSrcAlias: `@_${metaName.replace(/-/g, '_')}_src`,
|
|
60
|
-
toolsType,
|
|
61
60
|
};
|
|
62
61
|
};
|
|
63
62
|
exports.initAppContext = initAppContext;
|
package/dist/createCli.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const mergeOptions: (options?: CoreOptions) => CoreOptions & {
|
|
|
4
4
|
};
|
|
5
5
|
export declare const createCli: () => {
|
|
6
6
|
init: (options?: CoreOptions) => Promise<{
|
|
7
|
-
resolved: import("./types").NormalizedConfig<{}
|
|
7
|
+
resolved: import("./types").NormalizedConfig<{}>;
|
|
8
8
|
appContext: import("./types").IAppContext;
|
|
9
9
|
}>;
|
|
10
10
|
run: (options?: CoreOptions) => Promise<void>;
|
package/dist/createCli.js
CHANGED
|
@@ -44,7 +44,6 @@ const createCli = () => {
|
|
|
44
44
|
(0, checkIsDuplicationPlugin_1.checkIsDuplicationPlugin)(plugins.map(plugin => plugin.name), loaded.config.autoLoadPlugins);
|
|
45
45
|
plugins.forEach(plugin => plugin && manager_1.manager.usePlugin(plugin));
|
|
46
46
|
const appContext = (0, context_1.initAppContext)({
|
|
47
|
-
toolsType: mergedOptions === null || mergedOptions === void 0 ? void 0 : mergedOptions.toolsType,
|
|
48
47
|
appDirectory,
|
|
49
48
|
plugins,
|
|
50
49
|
configFile: loaded.filePath,
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { manager, createPlugin, registerHook } from './manager';
|
|
|
5
5
|
export { AppContext, ConfigContext, ResolvedConfigContext, useAppContext, useConfigContext, useResolvedConfigContext, initAppContext, } from './context';
|
|
6
6
|
export declare const cli: {
|
|
7
7
|
init: (options?: import("./types").CoreOptions | undefined) => Promise<{
|
|
8
|
-
resolved: import("./types").NormalizedConfig<{}
|
|
8
|
+
resolved: import("./types").NormalizedConfig<{}>;
|
|
9
9
|
appContext: import("./types").IAppContext;
|
|
10
10
|
}>;
|
|
11
11
|
run: (options?: import("./types").CoreOptions | undefined) => Promise<void>;
|
package/dist/loadPlugins.d.ts
CHANGED
package/dist/manager.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { BasePluginAPI } from './types';
|
|
2
2
|
export declare const manager: import("@modern-js/plugin").AsyncManager<{
|
|
3
3
|
beforeConfig: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
4
|
-
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}
|
|
4
|
+
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}>>;
|
|
5
5
|
resolvedConfig: import("@modern-js/plugin").AsyncWaterfall<{
|
|
6
|
-
resolved: import("./types").NormalizedConfig<{}
|
|
6
|
+
resolved: import("./types").NormalizedConfig<{}>;
|
|
7
7
|
}>;
|
|
8
|
-
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void
|
|
8
|
+
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
9
9
|
prepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
10
10
|
afterPrepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
11
|
-
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void
|
|
11
|
+
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
12
12
|
fileChange: import("@modern-js/plugin").AsyncWorkflow<{
|
|
13
13
|
filename: string;
|
|
14
14
|
eventType: "add" | "unlink" | "change";
|
|
@@ -18,17 +18,17 @@ export declare const manager: import("@modern-js/plugin").AsyncManager<{
|
|
|
18
18
|
}, void>;
|
|
19
19
|
beforeExit: import("@modern-js/plugin").Workflow<void, void>;
|
|
20
20
|
addRuntimeExports: import("@modern-js/plugin").AsyncWaterfall<void>;
|
|
21
|
-
}, BasePluginAPI<{}
|
|
21
|
+
}, BasePluginAPI<{}>>;
|
|
22
22
|
export declare const createPlugin: (setup?: import("@modern-js/plugin").AsyncSetup<{
|
|
23
23
|
beforeConfig: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
24
|
-
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}
|
|
24
|
+
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}>>;
|
|
25
25
|
resolvedConfig: import("@modern-js/plugin").AsyncWaterfall<{
|
|
26
|
-
resolved: import("./types").NormalizedConfig<{}
|
|
26
|
+
resolved: import("./types").NormalizedConfig<{}>;
|
|
27
27
|
}>;
|
|
28
|
-
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void
|
|
28
|
+
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
29
29
|
prepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
30
30
|
afterPrepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
31
|
-
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void
|
|
31
|
+
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
32
32
|
fileChange: import("@modern-js/plugin").AsyncWorkflow<{
|
|
33
33
|
filename: string;
|
|
34
34
|
eventType: "add" | "unlink" | "change";
|
|
@@ -38,16 +38,16 @@ export declare const createPlugin: (setup?: import("@modern-js/plugin").AsyncSet
|
|
|
38
38
|
}, void>;
|
|
39
39
|
beforeExit: import("@modern-js/plugin").Workflow<void, void>;
|
|
40
40
|
addRuntimeExports: import("@modern-js/plugin").AsyncWaterfall<void>;
|
|
41
|
-
}, BasePluginAPI<{}
|
|
41
|
+
}, BasePluginAPI<{}>> | undefined, options?: import("@modern-js/plugin").PluginOptions<{
|
|
42
42
|
beforeConfig: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
43
|
-
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}
|
|
43
|
+
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}>>;
|
|
44
44
|
resolvedConfig: import("@modern-js/plugin").AsyncWaterfall<{
|
|
45
|
-
resolved: import("./types").NormalizedConfig<{}
|
|
45
|
+
resolved: import("./types").NormalizedConfig<{}>;
|
|
46
46
|
}>;
|
|
47
|
-
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void
|
|
47
|
+
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
48
48
|
prepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
49
49
|
afterPrepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
50
|
-
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void
|
|
50
|
+
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
51
51
|
fileChange: import("@modern-js/plugin").AsyncWorkflow<{
|
|
52
52
|
filename: string;
|
|
53
53
|
eventType: "add" | "unlink" | "change";
|
|
@@ -59,14 +59,14 @@ export declare const createPlugin: (setup?: import("@modern-js/plugin").AsyncSet
|
|
|
59
59
|
addRuntimeExports: import("@modern-js/plugin").AsyncWaterfall<void>;
|
|
60
60
|
}, import("@modern-js/plugin").AsyncSetup<{
|
|
61
61
|
beforeConfig: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
62
|
-
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}
|
|
62
|
+
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}>>;
|
|
63
63
|
resolvedConfig: import("@modern-js/plugin").AsyncWaterfall<{
|
|
64
|
-
resolved: import("./types").NormalizedConfig<{}
|
|
64
|
+
resolved: import("./types").NormalizedConfig<{}>;
|
|
65
65
|
}>;
|
|
66
|
-
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void
|
|
66
|
+
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
67
67
|
prepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
68
68
|
afterPrepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
69
|
-
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void
|
|
69
|
+
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
70
70
|
fileChange: import("@modern-js/plugin").AsyncWorkflow<{
|
|
71
71
|
filename: string;
|
|
72
72
|
eventType: "add" | "unlink" | "change";
|
|
@@ -76,16 +76,16 @@ export declare const createPlugin: (setup?: import("@modern-js/plugin").AsyncSet
|
|
|
76
76
|
}, void>;
|
|
77
77
|
beforeExit: import("@modern-js/plugin").Workflow<void, void>;
|
|
78
78
|
addRuntimeExports: import("@modern-js/plugin").AsyncWaterfall<void>;
|
|
79
|
-
}, BasePluginAPI<{}
|
|
79
|
+
}, BasePluginAPI<{}>>> | undefined) => import("@modern-js/plugin").AsyncPlugin<{
|
|
80
80
|
beforeConfig: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
81
|
-
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}
|
|
81
|
+
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}>>;
|
|
82
82
|
resolvedConfig: import("@modern-js/plugin").AsyncWaterfall<{
|
|
83
|
-
resolved: import("./types").NormalizedConfig<{}
|
|
83
|
+
resolved: import("./types").NormalizedConfig<{}>;
|
|
84
84
|
}>;
|
|
85
|
-
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void
|
|
85
|
+
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
86
86
|
prepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
87
87
|
afterPrepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
88
|
-
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void
|
|
88
|
+
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
89
89
|
fileChange: import("@modern-js/plugin").AsyncWorkflow<{
|
|
90
90
|
filename: string;
|
|
91
91
|
eventType: "add" | "unlink" | "change";
|
|
@@ -95,16 +95,16 @@ export declare const createPlugin: (setup?: import("@modern-js/plugin").AsyncSet
|
|
|
95
95
|
}, void>;
|
|
96
96
|
beforeExit: import("@modern-js/plugin").Workflow<void, void>;
|
|
97
97
|
addRuntimeExports: import("@modern-js/plugin").AsyncWaterfall<void>;
|
|
98
|
-
}, BasePluginAPI<{}
|
|
98
|
+
}, BasePluginAPI<{}>>, registerHook: (newHooks: Partial<{
|
|
99
99
|
beforeConfig: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
100
|
-
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}
|
|
100
|
+
config: import("@modern-js/plugin").ParallelWorkflow<void, import("./types").UserConfig<{}>>;
|
|
101
101
|
resolvedConfig: import("@modern-js/plugin").AsyncWaterfall<{
|
|
102
|
-
resolved: import("./types").NormalizedConfig<{}
|
|
102
|
+
resolved: import("./types").NormalizedConfig<{}>;
|
|
103
103
|
}>;
|
|
104
|
-
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void
|
|
104
|
+
validateSchema: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
105
105
|
prepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
106
106
|
afterPrepare: import("@modern-js/plugin").AsyncWorkflow<void, void>;
|
|
107
|
-
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void
|
|
107
|
+
watchFiles: import("@modern-js/plugin").ParallelWorkflow<void>;
|
|
108
108
|
fileChange: import("@modern-js/plugin").AsyncWorkflow<{
|
|
109
109
|
filename: string;
|
|
110
110
|
eventType: "add" | "unlink" | "change";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { ErrorObject } from '@modern-js/utils/compiled/ajv';
|
|
2
2
|
import type { InternalPlugins } from './plugin';
|
|
3
|
-
import type { ToolsType } from './context';
|
|
4
3
|
import type { UserConfig } from './config';
|
|
5
4
|
export interface CoreOptions {
|
|
6
5
|
cwd?: string;
|
|
@@ -20,7 +19,6 @@ export interface CoreOptions {
|
|
|
20
19
|
distDir?: string;
|
|
21
20
|
sharedDir?: string;
|
|
22
21
|
};
|
|
23
|
-
toolsType?: ToolsType;
|
|
24
22
|
/** force the modern-js core auto register plugin exist in the package.json */
|
|
25
23
|
forceAutoLoadPlugins?: boolean;
|
|
26
24
|
/** config for Node API */
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { UserConfig, NormalizedConfig } from '../types';
|
|
2
|
-
export declare const mergeConfig: <ExtendConfig extends Record<string, any>>(configs: (UserConfig<ExtendConfig
|
|
2
|
+
export declare const mergeConfig: <ExtendConfig extends Record<string, any>>(configs: (UserConfig<ExtendConfig> | NormalizedConfig<ExtendConfig>)[]) => NormalizedConfig<ExtendConfig>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { UserConfig } from '../types';
|
|
2
2
|
export declare const deepGet: (obj: any, key: string) => any;
|
|
3
|
-
export declare const repeatKeyWarning: <E extends Record<string, any>>(schema: any, jsConfig: UserConfig<E
|
|
3
|
+
export declare const repeatKeyWarning: <E extends Record<string, any>>(schema: any, jsConfig: UserConfig<E>, pkgConfig: UserConfig<E>) => void;
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"modern",
|
|
15
15
|
"modern.js"
|
|
16
16
|
],
|
|
17
|
-
"version": "2.
|
|
17
|
+
"version": "2.21.1",
|
|
18
18
|
"jsnext:source": "./src/index.ts",
|
|
19
19
|
"types": "./dist/index.d.ts",
|
|
20
20
|
"main": "./dist/index.js",
|
|
@@ -69,30 +69,30 @@
|
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@modern-js/node-bundle-require": "2.
|
|
73
|
-
"@modern-js/plugin": "2.
|
|
74
|
-
"@modern-js/utils": "2.
|
|
72
|
+
"@modern-js/node-bundle-require": "2.21.1",
|
|
73
|
+
"@modern-js/plugin": "2.21.1",
|
|
74
|
+
"@modern-js/utils": "2.21.1"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@types/babel__code-frame": "^7.0.3",
|
|
78
|
-
"@types/babel__core": "^7.
|
|
78
|
+
"@types/babel__core": "^7.20.0",
|
|
79
79
|
"@types/jest": "^29",
|
|
80
80
|
"@types/less": "^3.0.3",
|
|
81
81
|
"@types/node": "^14",
|
|
82
82
|
"autoprefixer": "10.4.13",
|
|
83
|
-
"
|
|
83
|
+
"tsm": "2.3.0",
|
|
84
84
|
"html-webpack-plugin": "5.5.0",
|
|
85
85
|
"jest": "^29",
|
|
86
86
|
"postcss": "8.4.21",
|
|
87
87
|
"sass": "^1.45.0",
|
|
88
88
|
"terser-webpack-plugin": "^5.1.4",
|
|
89
|
-
"typescript": "^
|
|
89
|
+
"typescript": "^5",
|
|
90
90
|
"webpack": "^5.82.1",
|
|
91
|
-
"@modern-js/builder-shared": "2.
|
|
92
|
-
"@modern-js/babel-preset-app": "2.
|
|
93
|
-
"@modern-js/types": "2.
|
|
94
|
-
"@scripts/
|
|
95
|
-
"@scripts/
|
|
91
|
+
"@modern-js/builder-shared": "2.21.1",
|
|
92
|
+
"@modern-js/babel-preset-app": "2.21.1",
|
|
93
|
+
"@modern-js/types": "2.21.1",
|
|
94
|
+
"@scripts/jest-config": "2.21.1",
|
|
95
|
+
"@scripts/build": "2.21.1"
|
|
96
96
|
},
|
|
97
97
|
"sideEffects": false,
|
|
98
98
|
"publishConfig": {
|