@modern-js/plugin-testing 1.5.7 → 1.6.0
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 +16 -0
- package/dist/js/modern/base/config/index.js +18 -0
- package/dist/js/modern/base/config/patches/assetsModule.js +11 -0
- package/dist/js/modern/base/config/patches/filemock.js +1 -0
- package/dist/js/modern/base/config/patches/index.js +13 -0
- package/dist/js/modern/base/config/patches/transformer.js +49 -0
- package/dist/js/modern/base/config/resolver.js +15 -0
- package/dist/js/modern/base/config/testConfigOperator.js +86 -0
- package/dist/js/modern/base/config/transformer/babelTransformer.js +12 -0
- package/dist/js/modern/base/hook.js +7 -0
- package/dist/js/modern/base/index.js +6 -0
- package/dist/js/modern/base/runJest.js +94 -0
- package/dist/js/modern/base/types/index.js +0 -0
- package/dist/js/modern/base/utils.js +59 -0
- package/dist/js/modern/cli/bff/app.js +22 -0
- package/dist/js/modern/cli/bff/constant.js +1 -0
- package/dist/js/modern/cli/bff/env.js +28 -0
- package/dist/js/modern/cli/bff/index.js +110 -0
- package/dist/js/modern/cli/bff/mockAPI.js +109 -0
- package/dist/js/modern/cli/bff/setup.js +33 -0
- package/dist/js/modern/cli/bff/utils/index.js +25 -0
- package/dist/js/modern/cli/index.js +2 -2
- package/dist/js/modern/cli/test.js +1 -1
- package/dist/js/modern/runtime-testing/base.js +1 -1
- package/dist/js/modern/runtime-testing/request.js +17 -0
- package/dist/js/node/base/config/index.js +31 -0
- package/dist/js/node/base/config/patches/assetsModule.js +20 -0
- package/dist/js/node/base/config/patches/filemock.js +8 -0
- package/dist/js/node/base/config/patches/index.js +24 -0
- package/dist/js/node/base/config/patches/transformer.js +58 -0
- package/dist/js/node/base/config/resolver.js +20 -0
- package/dist/js/node/base/config/testConfigOperator.js +93 -0
- package/dist/js/node/base/config/transformer/babelTransformer.js +23 -0
- package/dist/js/node/base/hook.js +18 -0
- package/dist/js/node/base/index.js +73 -0
- package/dist/js/node/base/runJest.js +109 -0
- package/dist/js/node/base/types/index.js +0 -0
- package/dist/js/node/base/utils.js +79 -0
- package/dist/js/node/cli/bff/app.js +34 -0
- package/dist/js/node/cli/bff/constant.js +8 -0
- package/dist/js/node/cli/bff/env.js +42 -0
- package/dist/js/node/cli/bff/index.js +129 -0
- package/dist/js/node/cli/bff/mockAPI.js +124 -0
- package/dist/js/node/cli/bff/setup.js +41 -0
- package/dist/js/node/cli/bff/utils/index.js +38 -0
- package/dist/js/node/cli/index.js +7 -7
- package/dist/js/node/cli/test.js +2 -2
- package/dist/js/node/runtime-testing/base.js +2 -2
- package/dist/js/node/runtime-testing/request.js +24 -0
- package/dist/js/treeshaking/base/config/index.js +40 -0
- package/dist/js/treeshaking/base/config/patches/assetsModule.js +11 -0
- package/dist/js/treeshaking/base/config/patches/filemock.js +1 -0
- package/dist/js/treeshaking/base/config/patches/index.js +85 -0
- package/dist/js/treeshaking/base/config/patches/transformer.js +45 -0
- package/dist/js/treeshaking/base/config/resolver.js +17 -0
- package/dist/js/treeshaking/base/config/testConfigOperator.js +91 -0
- package/dist/js/treeshaking/base/config/transformer/babelTransformer.js +12 -0
- package/dist/js/treeshaking/base/hook.js +7 -0
- package/dist/js/treeshaking/base/index.js +6 -0
- package/dist/js/treeshaking/base/runJest.js +194 -0
- package/dist/js/treeshaking/base/types/index.js +0 -0
- package/dist/js/treeshaking/base/utils.js +60 -0
- package/dist/js/treeshaking/cli/bff/app.js +47 -0
- package/dist/js/treeshaking/cli/bff/constant.js +1 -0
- package/dist/js/treeshaking/cli/bff/env.js +98 -0
- package/dist/js/treeshaking/cli/bff/index.js +145 -0
- package/dist/js/treeshaking/cli/bff/mockAPI.js +113 -0
- package/dist/js/treeshaking/cli/bff/setup.js +33 -0
- package/dist/js/treeshaking/cli/bff/utils/index.js +22 -0
- package/dist/js/treeshaking/cli/index.js +2 -2
- package/dist/js/treeshaking/cli/test.js +1 -1
- package/dist/js/treeshaking/runtime-testing/base.js +1 -1
- package/dist/js/treeshaking/runtime-testing/request.js +24 -0
- package/dist/types/base/config/index.d.ts +124 -0
- package/dist/types/base/config/patches/assetsModule.d.ts +6 -0
- package/dist/types/base/config/patches/filemock.d.ts +3 -0
- package/dist/types/base/config/patches/index.d.ts +2 -0
- package/dist/types/base/config/patches/transformer.d.ts +6 -0
- package/dist/types/base/config/resolver.d.ts +1 -0
- package/dist/types/base/config/testConfigOperator.d.ts +248 -0
- package/dist/types/base/config/transformer/babelTransformer.d.ts +2 -0
- package/dist/types/base/hook.d.ts +13 -0
- package/dist/types/base/index.d.ts +6 -0
- package/dist/types/base/runJest.d.ts +22 -0
- package/dist/types/base/types/index.d.ts +1 -0
- package/dist/types/base/utils.d.ts +12 -0
- package/dist/types/cli/bff/app.d.ts +6 -0
- package/dist/types/cli/bff/constant.d.ts +1 -0
- package/dist/types/cli/bff/env.d.ts +6 -0
- package/dist/types/cli/bff/index.d.ts +19 -0
- package/dist/types/cli/bff/mockAPI.d.ts +3 -0
- package/dist/types/cli/bff/setup.d.ts +1 -0
- package/dist/types/cli/bff/utils/index.d.ts +1 -0
- package/dist/types/cli/index.d.ts +1 -1
- package/dist/types/runtime-testing/base.d.ts +1 -1
- package/dist/types/runtime-testing/request.d.ts +4 -0
- package/package.json +23 -10
@@ -0,0 +1,248 @@
|
|
1
|
+
import { JestConfig, TestConfig } from '../types';
|
2
|
+
|
3
|
+
declare class TestConfigOperator {
|
4
|
+
private _testConfig;
|
5
|
+
private _jestConfig;
|
6
|
+
private readonly userJestConfig?;
|
7
|
+
private readonly defaultTestConfig;
|
8
|
+
constructor(testConfig: TestConfig);
|
9
|
+
private initial;
|
10
|
+
get jestConfig(): Partial<{
|
11
|
+
automock: boolean;
|
12
|
+
bail: number | boolean;
|
13
|
+
cache: boolean;
|
14
|
+
cacheDirectory: string;
|
15
|
+
ci: boolean;
|
16
|
+
clearMocks: boolean;
|
17
|
+
changedFilesWithAncestor: boolean;
|
18
|
+
changedSince: string;
|
19
|
+
collectCoverage: boolean;
|
20
|
+
collectCoverageFrom: string[];
|
21
|
+
collectCoverageOnlyFrom: {
|
22
|
+
[key: string]: boolean;
|
23
|
+
};
|
24
|
+
coverageDirectory: string;
|
25
|
+
coveragePathIgnorePatterns: string[];
|
26
|
+
coverageProvider: "babel" | "v8";
|
27
|
+
coverageReporters: import("@jest/types/build/Config").CoverageReporters;
|
28
|
+
coverageThreshold: {
|
29
|
+
[path: string]: import("@jest/types/build/Config").CoverageThresholdValue;
|
30
|
+
global: import("@jest/types/build/Config").CoverageThresholdValue;
|
31
|
+
};
|
32
|
+
dependencyExtractor: string;
|
33
|
+
detectLeaks: boolean;
|
34
|
+
detectOpenHandles: boolean;
|
35
|
+
displayName: string | import("@jest/types/build/Config").DisplayName;
|
36
|
+
expand: boolean;
|
37
|
+
extensionsToTreatAsEsm: string[];
|
38
|
+
extraGlobals: string[];
|
39
|
+
filter: string;
|
40
|
+
findRelatedTests: boolean;
|
41
|
+
forceCoverageMatch: string[];
|
42
|
+
forceExit: boolean;
|
43
|
+
json: boolean;
|
44
|
+
globals: import("@jest/types/build/Config").ConfigGlobals;
|
45
|
+
globalSetup: string | null | undefined;
|
46
|
+
globalTeardown: string | null | undefined;
|
47
|
+
haste: import("@jest/types/build/Config").HasteConfig;
|
48
|
+
injectGlobals: boolean;
|
49
|
+
reporters: (string | import("@jest/types/build/Config").ReporterConfig)[];
|
50
|
+
logHeapUsage: boolean;
|
51
|
+
lastCommit: boolean;
|
52
|
+
listTests: boolean;
|
53
|
+
maxConcurrency: number;
|
54
|
+
maxWorkers: string | number;
|
55
|
+
moduleDirectories: string[];
|
56
|
+
moduleFileExtensions: string[];
|
57
|
+
moduleLoader: string;
|
58
|
+
moduleNameMapper: {
|
59
|
+
[key: string]: string | string[];
|
60
|
+
};
|
61
|
+
modulePathIgnorePatterns: string[];
|
62
|
+
modulePaths: string[];
|
63
|
+
name: string;
|
64
|
+
noStackTrace: boolean;
|
65
|
+
notify: boolean;
|
66
|
+
notifyMode: string;
|
67
|
+
onlyChanged: boolean;
|
68
|
+
onlyFailures: boolean;
|
69
|
+
outputFile: string;
|
70
|
+
passWithNoTests: boolean;
|
71
|
+
preprocessorIgnorePatterns: string[];
|
72
|
+
preset: string | null | undefined;
|
73
|
+
prettierPath: string | null | undefined;
|
74
|
+
projects: (string | import("@jest/types/build/Config").InitialProjectOptions)[];
|
75
|
+
replname: string | null | undefined;
|
76
|
+
resetMocks: boolean;
|
77
|
+
resetModules: boolean;
|
78
|
+
resolver: string | null | undefined;
|
79
|
+
restoreMocks: boolean;
|
80
|
+
rootDir: string;
|
81
|
+
roots: string[];
|
82
|
+
runner: string;
|
83
|
+
runTestsByPath: boolean;
|
84
|
+
scriptPreprocessor: string;
|
85
|
+
setupFiles: string[];
|
86
|
+
setupTestFrameworkScriptFile: string;
|
87
|
+
setupFilesAfterEnv: string[];
|
88
|
+
silent: boolean;
|
89
|
+
skipFilter: boolean;
|
90
|
+
skipNodeResolution: boolean;
|
91
|
+
slowTestThreshold: number;
|
92
|
+
snapshotResolver: string;
|
93
|
+
snapshotSerializers: string[];
|
94
|
+
snapshotFormat: import("@jest/types/build/Config").PrettyFormatOptions;
|
95
|
+
errorOnDeprecated: boolean;
|
96
|
+
testEnvironment: string;
|
97
|
+
testEnvironmentOptions: Record<string, unknown>;
|
98
|
+
testFailureExitCode: string | number;
|
99
|
+
testLocationInResults: boolean;
|
100
|
+
testMatch: string[];
|
101
|
+
testNamePattern: string;
|
102
|
+
testPathDirs: string[];
|
103
|
+
testPathIgnorePatterns: string[];
|
104
|
+
testRegex: string | string[];
|
105
|
+
testResultsProcessor: string;
|
106
|
+
testRunner: string;
|
107
|
+
testSequencer: string;
|
108
|
+
testURL: string;
|
109
|
+
testTimeout: number;
|
110
|
+
timers: "modern" | "real" | "fake" | "legacy";
|
111
|
+
transform: {
|
112
|
+
[regex: string]: string | import("@jest/types/build/Config").TransformerConfig;
|
113
|
+
};
|
114
|
+
transformIgnorePatterns: string[];
|
115
|
+
watchPathIgnorePatterns: string[];
|
116
|
+
unmockedModulePathPatterns: string[];
|
117
|
+
updateSnapshot: boolean;
|
118
|
+
useStderr: boolean;
|
119
|
+
verbose?: boolean | undefined;
|
120
|
+
watch: boolean;
|
121
|
+
watchAll: boolean;
|
122
|
+
watchman: boolean;
|
123
|
+
watchPlugins: (string | [string, Record<string, unknown>])[];
|
124
|
+
}>;
|
125
|
+
get testConfig(): TestConfig;
|
126
|
+
mergeJestConfig(sourceConfig: JestConfig): void;
|
127
|
+
setJestUserConfig(): void;
|
128
|
+
setJestConfig(sourceConfig: JestConfig, options?: {
|
129
|
+
force: boolean;
|
130
|
+
}): void;
|
131
|
+
getFinalConfig(): Partial<{
|
132
|
+
automock: boolean;
|
133
|
+
bail: number | boolean;
|
134
|
+
cache: boolean;
|
135
|
+
cacheDirectory: string;
|
136
|
+
ci: boolean;
|
137
|
+
clearMocks: boolean;
|
138
|
+
changedFilesWithAncestor: boolean;
|
139
|
+
changedSince: string;
|
140
|
+
collectCoverage: boolean;
|
141
|
+
collectCoverageFrom: string[];
|
142
|
+
collectCoverageOnlyFrom: {
|
143
|
+
[key: string]: boolean;
|
144
|
+
};
|
145
|
+
coverageDirectory: string;
|
146
|
+
coveragePathIgnorePatterns: string[];
|
147
|
+
coverageProvider: "babel" | "v8";
|
148
|
+
coverageReporters: import("@jest/types/build/Config").CoverageReporters;
|
149
|
+
coverageThreshold: {
|
150
|
+
[path: string]: import("@jest/types/build/Config").CoverageThresholdValue;
|
151
|
+
global: import("@jest/types/build/Config").CoverageThresholdValue;
|
152
|
+
};
|
153
|
+
dependencyExtractor: string;
|
154
|
+
detectLeaks: boolean;
|
155
|
+
detectOpenHandles: boolean;
|
156
|
+
displayName: string | import("@jest/types/build/Config").DisplayName;
|
157
|
+
expand: boolean;
|
158
|
+
extensionsToTreatAsEsm: string[];
|
159
|
+
extraGlobals: string[];
|
160
|
+
filter: string;
|
161
|
+
findRelatedTests: boolean;
|
162
|
+
forceCoverageMatch: string[];
|
163
|
+
forceExit: boolean;
|
164
|
+
json: boolean;
|
165
|
+
globals: import("@jest/types/build/Config").ConfigGlobals;
|
166
|
+
globalSetup: string | null | undefined;
|
167
|
+
globalTeardown: string | null | undefined;
|
168
|
+
haste: import("@jest/types/build/Config").HasteConfig;
|
169
|
+
injectGlobals: boolean;
|
170
|
+
reporters: (string | import("@jest/types/build/Config").ReporterConfig)[];
|
171
|
+
logHeapUsage: boolean;
|
172
|
+
lastCommit: boolean;
|
173
|
+
listTests: boolean;
|
174
|
+
maxConcurrency: number;
|
175
|
+
maxWorkers: string | number;
|
176
|
+
moduleDirectories: string[];
|
177
|
+
moduleFileExtensions: string[];
|
178
|
+
moduleLoader: string;
|
179
|
+
moduleNameMapper: {
|
180
|
+
[key: string]: string | string[];
|
181
|
+
};
|
182
|
+
modulePathIgnorePatterns: string[];
|
183
|
+
modulePaths: string[];
|
184
|
+
name: string;
|
185
|
+
noStackTrace: boolean;
|
186
|
+
notify: boolean;
|
187
|
+
notifyMode: string;
|
188
|
+
onlyChanged: boolean;
|
189
|
+
onlyFailures: boolean;
|
190
|
+
outputFile: string;
|
191
|
+
passWithNoTests: boolean;
|
192
|
+
preprocessorIgnorePatterns: string[];
|
193
|
+
preset: string | null | undefined;
|
194
|
+
prettierPath: string | null | undefined;
|
195
|
+
projects: (string | import("@jest/types/build/Config").InitialProjectOptions)[];
|
196
|
+
replname: string | null | undefined;
|
197
|
+
resetMocks: boolean;
|
198
|
+
resetModules: boolean;
|
199
|
+
resolver: string | null | undefined;
|
200
|
+
restoreMocks: boolean;
|
201
|
+
rootDir: string;
|
202
|
+
roots: string[];
|
203
|
+
runner: string;
|
204
|
+
runTestsByPath: boolean;
|
205
|
+
scriptPreprocessor: string;
|
206
|
+
setupFiles: string[];
|
207
|
+
setupTestFrameworkScriptFile: string;
|
208
|
+
setupFilesAfterEnv: string[];
|
209
|
+
silent: boolean;
|
210
|
+
skipFilter: boolean;
|
211
|
+
skipNodeResolution: boolean;
|
212
|
+
slowTestThreshold: number;
|
213
|
+
snapshotResolver: string;
|
214
|
+
snapshotSerializers: string[];
|
215
|
+
snapshotFormat: import("@jest/types/build/Config").PrettyFormatOptions;
|
216
|
+
errorOnDeprecated: boolean;
|
217
|
+
testEnvironment: string;
|
218
|
+
testEnvironmentOptions: Record<string, unknown>;
|
219
|
+
testFailureExitCode: string | number;
|
220
|
+
testLocationInResults: boolean;
|
221
|
+
testMatch: string[];
|
222
|
+
testNamePattern: string;
|
223
|
+
testPathDirs: string[];
|
224
|
+
testPathIgnorePatterns: string[];
|
225
|
+
testRegex: string | string[];
|
226
|
+
testResultsProcessor: string;
|
227
|
+
testRunner: string;
|
228
|
+
testSequencer: string;
|
229
|
+
testURL: string;
|
230
|
+
testTimeout: number;
|
231
|
+
timers: "modern" | "real" | "fake" | "legacy";
|
232
|
+
transform: {
|
233
|
+
[regex: string]: string | import("@jest/types/build/Config").TransformerConfig;
|
234
|
+
};
|
235
|
+
transformIgnorePatterns: string[];
|
236
|
+
watchPathIgnorePatterns: string[];
|
237
|
+
unmockedModulePathPatterns: string[];
|
238
|
+
updateSnapshot: boolean;
|
239
|
+
useStderr: boolean;
|
240
|
+
verbose?: boolean | undefined;
|
241
|
+
watch: boolean;
|
242
|
+
watchAll: boolean;
|
243
|
+
watchman: boolean;
|
244
|
+
watchPlugins: (string | [string, Record<string, unknown>])[];
|
245
|
+
}>;
|
246
|
+
}
|
247
|
+
|
248
|
+
export { TestConfigOperator };
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { TestConfigOperator } from './config/testConfigOperator';
|
2
|
+
export declare const jestConfigHook: import("@modern-js/plugin").AsyncPipeline<TestConfigOperator, TestConfigOperator>;
|
3
|
+
export declare const afterTestHook: import("@modern-js/plugin").ParallelWorkflow<void, unknown>;
|
4
|
+
export declare const testingHooks: {
|
5
|
+
jestConfig: import("@modern-js/plugin").AsyncPipeline<TestConfigOperator, TestConfigOperator>;
|
6
|
+
afterTest: import("@modern-js/plugin").ParallelWorkflow<void, unknown>;
|
7
|
+
};
|
8
|
+
declare module '@modern-js/core' {
|
9
|
+
interface Hooks {
|
10
|
+
jestConfig: typeof jestConfigHook;
|
11
|
+
afterTest: typeof afterTestHook;
|
12
|
+
}
|
13
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export { runTest, runJest } from './runJest';
|
2
|
+
export { getModuleNameMapper } from './utils';
|
3
|
+
export { DEFAULT_RESOLVER_PATH } from './config';
|
4
|
+
export { TestConfigOperator } from './config/testConfigOperator';
|
5
|
+
export { testingHooks } from './hook';
|
6
|
+
export * from './types';
|
@@ -0,0 +1,22 @@
|
|
1
|
+
/**
|
2
|
+
* @file run jest by nodejs API
|
3
|
+
* @description
|
4
|
+
* Jest does not provide node API to run jest.
|
5
|
+
* The followed code is inspired by
|
6
|
+
* https://github.com/facebook/jest/blob/fdc74af37235354e077edeeee8aa2d1a4a863032/packages/jest-cli/src/cli/index.ts#L21
|
7
|
+
*/
|
8
|
+
import { Config } from '@jest/types';
|
9
|
+
import type { PluginAPI } from '@modern-js/core';
|
10
|
+
import { TestConfig } from './types';
|
11
|
+
declare type Argv = Omit<Config.Argv, '_' | '$0'>;
|
12
|
+
/**
|
13
|
+
* Node API: execute jest
|
14
|
+
*/
|
15
|
+
|
16
|
+
export declare function runJest(config: Argv, pwd?: string): Promise<void>;
|
17
|
+
/**
|
18
|
+
* Node API: run test
|
19
|
+
*/
|
20
|
+
|
21
|
+
export declare function runTest(api: PluginAPI, config: TestConfig, pwd?: string): Promise<void>;
|
22
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export type { JestConfig, TestConfig } from '@modern-js/core';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
export declare const debug: any;
|
2
|
+
interface TSConfig {
|
3
|
+
extends?: string;
|
4
|
+
compilerOptions?: Record<string, any>;
|
5
|
+
}
|
6
|
+
/**
|
7
|
+
* Read `compilerOptions` in the current pwd's tsconfig.json file
|
8
|
+
*/
|
9
|
+
|
10
|
+
export declare const readCompilerOptions: (pwd?: string, filename?: string) => TSConfig['compilerOptions'];
|
11
|
+
export declare const getModuleNameMapper: (alias: any) => any;
|
12
|
+
export {};
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/// <reference path="../../../../../../server/prod-server/src/type.d.ts" />
|
2
|
+
/// <reference types="node" />
|
3
|
+
/// <reference types="node/http" />
|
4
|
+
export declare const isInHandler: () => boolean;
|
5
|
+
declare const createApp: (pwd: string, config: any, plugins: any[], routes: any[]) => Promise<(req: import("http").IncomingMessage, res: import("http").ServerResponse, next?: (() => void) | undefined) => void>;
|
6
|
+
export { createApp };
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const bff_info_key = "modern_bff_info";
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import type { CliPlugin } from '@modern-js/core';
|
2
|
+
import { TestConfigOperator } from '../../base';
|
3
|
+
export declare const setJestConfigForBFF: ({
|
4
|
+
pwd,
|
5
|
+
userConfig,
|
6
|
+
plugins,
|
7
|
+
routes,
|
8
|
+
utils
|
9
|
+
}: {
|
10
|
+
pwd: string;
|
11
|
+
userConfig: any;
|
12
|
+
plugins: any[];
|
13
|
+
routes: any[];
|
14
|
+
utils: TestConfigOperator;
|
15
|
+
}) => Promise<void>;
|
16
|
+
|
17
|
+
declare const _default: () => CliPlugin;
|
18
|
+
|
19
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const isBFFProject: (pwd: string) => boolean;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { CliPlugin } from '@modern-js/core';
|
2
|
-
import { TestConfigOperator } from '
|
2
|
+
import { TestConfigOperator } from '../base';
|
3
3
|
export declare const mergeUserJestConfig: (testUtils: TestConfigOperator) => void;
|
4
4
|
|
5
5
|
declare const _default: () => CliPlugin;
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"modern",
|
12
12
|
"modern.js"
|
13
13
|
],
|
14
|
-
"version": "1.
|
14
|
+
"version": "1.6.0",
|
15
15
|
"jsnext:source": "./src/index.ts",
|
16
16
|
"types": "./dist/types/index.d.ts",
|
17
17
|
"main": "./dist/js/node/index.js",
|
@@ -86,24 +86,37 @@
|
|
86
86
|
"@modern-js-reduck/plugin-immutable": "^1.0.1",
|
87
87
|
"@modern-js-reduck/store": "^1.0.3",
|
88
88
|
"@modern-js/babel-compiler": "^1.2.6",
|
89
|
-
"@modern-js/
|
90
|
-
"@modern-js/
|
91
|
-
"@modern-js/
|
92
|
-
"@modern-js/
|
93
|
-
"@modern-js/
|
94
|
-
"@modern-js/
|
89
|
+
"@modern-js/runtime-core": "^1.5.3",
|
90
|
+
"@modern-js/utils": "^1.7.12",
|
91
|
+
"@modern-js/webpack": "^1.12.0",
|
92
|
+
"@modern-js/babel-preset-app": "^1.5.0",
|
93
|
+
"@modern-js/plugin": "^1.4.1",
|
94
|
+
"@modern-js/server": "^1.5.1",
|
95
95
|
"@testing-library/jest-dom": "^5.14.1",
|
96
96
|
"@testing-library/react": "^12.0.0",
|
97
|
-
"@types/testing-library__jest-dom": "^5.14.3"
|
97
|
+
"@types/testing-library__jest-dom": "^5.14.3",
|
98
|
+
"jest-environment-node": "^27.2.2",
|
99
|
+
"path-to-regexp": "^6.2.0",
|
100
|
+
"supertest": "^6.1.6",
|
101
|
+
"babel-jest": "^27.0.6",
|
102
|
+
"enhanced-resolve": "^5.8.3",
|
103
|
+
"identity-obj-proxy": "^3.0.0",
|
104
|
+
"jest": "^27.0.6",
|
105
|
+
"ts-jest": "^27.0.4",
|
106
|
+
"yargs": "^17.0.1"
|
98
107
|
},
|
99
108
|
"devDependencies": {
|
100
|
-
"@modern-js/core": "1.
|
109
|
+
"@modern-js/core": "1.13.0",
|
110
|
+
"@modern-js/bff-core": "1.1.3",
|
101
111
|
"@scripts/build": "0.0.0",
|
102
112
|
"@scripts/jest-config": "0.0.0",
|
103
113
|
"@types/jest": "^27",
|
114
|
+
"@types/supertest": "^2.0.11",
|
104
115
|
"@types/node": "^14",
|
105
116
|
"@types/react": "^17",
|
106
117
|
"@types/react-dom": "^17",
|
118
|
+
"@types/yargs": "^17.0.2",
|
119
|
+
"@jest/types": "^27.0.6",
|
107
120
|
"jest": "^27",
|
108
121
|
"react": "^17",
|
109
122
|
"react-dom": "^17",
|
@@ -128,7 +141,7 @@
|
|
128
141
|
]
|
129
142
|
},
|
130
143
|
"test": {
|
131
|
-
"command": "jest
|
144
|
+
"command": "jest",
|
132
145
|
"files": [
|
133
146
|
"src/**/*",
|
134
147
|
"tsconfig.json",
|