@modern-js/plugin-testing 2.7.0 → 2.8.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @modern-js/plugin-testing
2
2
 
3
+ ## 2.8.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3ef832741b]
8
+ - Updated dependencies [9330022f4e]
9
+ - Updated dependencies [1104a9f18b]
10
+ - Updated dependencies [40747e6fdd]
11
+ - Updated dependencies [70d82e1408]
12
+ - Updated dependencies [58a1fc64da]
13
+ - Updated dependencies [4cfea8ce49]
14
+ - Updated dependencies [1f6ca2c7fb]
15
+ - Updated dependencies [9c9ebba6f2]
16
+ - @modern-js/runtime@2.8.0
17
+ - @modern-js/prod-server@2.8.0
18
+ - @modern-js/utils@2.8.0
19
+ - @modern-js/babel-preset-app@2.8.0
20
+ - @modern-js/babel-compiler@2.8.0
21
+ - @modern-js/plugin@2.8.0
22
+
3
23
  ## 2.7.0
4
24
 
5
25
  ### Minor Changes
package/README.md CHANGED
@@ -19,8 +19,8 @@ Please follow [Quick Start](https://modernjs.dev/en/guides/get-started/quick-sta
19
19
 
20
20
  ## Contributing
21
21
 
22
- Please read the [Contributing Guide](https://github.com/modern-js-dev/modern.js/blob/main/CONTRIBUTING.md).
22
+ Please read the [Contributing Guide](https://github.com/web-infra-dev/modern.js/blob/main/CONTRIBUTING.md).
23
23
 
24
24
  ## License
25
25
 
26
- Modern.js is [MIT licensed](https://github.com/modern-js-dev/modern.js/blob/main/LICENSE).
26
+ Modern.js is [MIT licensed](https://github.com/web-infra-dev/modern.js/blob/main/LICENSE).
@@ -107,7 +107,7 @@ declare const patchConfig: (testOperator: TestConfigOperator) => Promise<Partial
107
107
  testSequencer: string;
108
108
  testURL: string;
109
109
  testTimeout: number;
110
- timers: "modern" | "real" | "fake" | "legacy";
110
+ timers: "legacy" | "modern" | "real" | "fake";
111
111
  transform: {
112
112
  [regex: string]: string | import("@jest/types/build/Config").TransformerConfig;
113
113
  };
@@ -114,7 +114,7 @@ declare class TestConfigOperator {
114
114
  testSequencer: string;
115
115
  testURL: string;
116
116
  testTimeout: number;
117
- timers: "modern" | "real" | "fake" | "legacy";
117
+ timers: "legacy" | "modern" | "real" | "fake";
118
118
  transform: {
119
119
  [regex: string]: string | import("@jest/types/build/Config").TransformerConfig;
120
120
  };
package/package.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "name": "@modern-js/plugin-testing",
3
3
  "description": "A Progressive React Framework for modern web development.",
4
4
  "homepage": "https://modernjs.dev",
5
- "bugs": "https://github.com/modern-js-dev/modern.js/issues",
6
- "repository": "modern-js-dev/modern.js",
5
+ "bugs": "https://github.com/web-infra-dev/modern.js/issues",
6
+ "repository": "web-infra-dev/modern.js",
7
7
  "license": "MIT",
8
8
  "keywords": [
9
9
  "react",
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "2.7.0",
14
+ "version": "2.8.0",
15
15
  "jsnext:source": "./src/cli/index.ts",
16
16
  "types": "./dist/types/cli/index.d.ts",
17
17
  "main": "./dist/cjs/cli/index.js",
@@ -106,16 +106,16 @@
106
106
  "jest": "^27.0.6",
107
107
  "ts-jest": "^27.0.4",
108
108
  "yargs": "^17.0.1",
109
- "@modern-js/babel-compiler": "2.7.0",
110
- "@modern-js/utils": "2.7.0",
111
- "@modern-js/babel-preset-app": "2.7.0",
112
- "@modern-js/plugin": "2.7.0",
113
- "@modern-js/prod-server": "2.7.0"
109
+ "@modern-js/babel-compiler": "2.8.0",
110
+ "@modern-js/utils": "2.8.0",
111
+ "@modern-js/babel-preset-app": "2.8.0",
112
+ "@modern-js/plugin": "2.8.0",
113
+ "@modern-js/prod-server": "2.8.0"
114
114
  },
115
115
  "peerDependencies": {
116
116
  "react": ">=17",
117
117
  "react-dom": ">=17",
118
- "@modern-js/runtime": "^2.7.0"
118
+ "@modern-js/runtime": "^2.8.0"
119
119
  },
120
120
  "peerDependenciesMeta": {
121
121
  "@modern-js/runtime": {
@@ -132,12 +132,12 @@
132
132
  "@jest/types": "^27.0.6",
133
133
  "jest": "^27",
134
134
  "typescript": "^4",
135
- "@modern-js/core": "2.7.0",
136
- "@modern-js/types": "2.7.0",
137
- "@modern-js/runtime": "2.7.0",
138
- "@modern-js/bff-core": "2.7.0",
139
- "@scripts/build": "2.7.0",
140
- "@scripts/jest-config": "2.7.0"
135
+ "@modern-js/core": "2.8.0",
136
+ "@modern-js/types": "2.8.0",
137
+ "@modern-js/runtime": "2.8.0",
138
+ "@modern-js/bff-core": "2.8.0",
139
+ "@scripts/build": "2.8.0",
140
+ "@scripts/jest-config": "2.8.0"
141
141
  },
142
142
  "sideEffects": false,
143
143
  "modernConfig": {},