@modern-js/plugin-testing 1.18.1 → 1.20.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/package.json +14 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @modern-js/plugin-testing
2
2
 
3
+ ## 1.20.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d5d570b]
8
+ - Updated dependencies [b57d5ff]
9
+ - Updated dependencies [4ddc185]
10
+ - Updated dependencies [715df7a]
11
+ - Updated dependencies [df8ee7e]
12
+ - Updated dependencies [077aef8]
13
+ - Updated dependencies [8c05089]
14
+ - Updated dependencies [baf7337]
15
+ - @modern-js/utils@1.20.0
16
+ - @modern-js/runtime@1.20.0
17
+ - @modern-js/webpack@1.20.0
18
+ - @modern-js/prod-server@1.20.0
19
+ - @modern-js/babel-preset-app@1.20.0
20
+ - @modern-js/babel-compiler@1.20.0
21
+ - @modern-js/plugin@1.20.0
22
+
23
+ ## 1.19.0
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [1903f68]
28
+ - @modern-js/prod-server@1.19.0
29
+ - @modern-js/webpack@1.19.0
30
+ - @modern-js/runtime@1.19.0
31
+ - @modern-js/babel-preset-app@1.19.0
32
+ - @modern-js/babel-compiler@1.19.0
33
+ - @modern-js/plugin@1.19.0
34
+ - @modern-js/utils@1.19.0
35
+
3
36
  ## 1.18.1
4
37
 
5
38
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.18.1",
14
+ "version": "1.20.0",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -99,12 +99,12 @@
99
99
  "@modern-js-reduck/plugin-effects": "^1.0.2",
100
100
  "@modern-js-reduck/plugin-immutable": "^1.0.1",
101
101
  "@modern-js-reduck/store": "^1.0.3",
102
- "@modern-js/babel-compiler": "1.18.1",
103
- "@modern-js/utils": "1.18.1",
104
- "@modern-js/webpack": "1.18.1",
105
- "@modern-js/babel-preset-app": "1.18.1",
106
- "@modern-js/plugin": "1.18.1",
107
- "@modern-js/prod-server": "1.18.1",
102
+ "@modern-js/babel-compiler": "1.20.0",
103
+ "@modern-js/utils": "1.20.0",
104
+ "@modern-js/webpack": "1.20.0",
105
+ "@modern-js/babel-preset-app": "1.20.0",
106
+ "@modern-js/plugin": "1.20.0",
107
+ "@modern-js/prod-server": "1.20.0",
108
108
  "@testing-library/jest-dom": "^5.14.1",
109
109
  "@testing-library/react": "^12.0.0",
110
110
  "@types/testing-library__jest-dom": "^5.14.3",
@@ -121,7 +121,7 @@
121
121
  "peerDependencies": {
122
122
  "react": ">=17",
123
123
  "react-dom": ">=17",
124
- "@modern-js/runtime": "^1.18.1"
124
+ "@modern-js/runtime": "^1.20.0"
125
125
  },
126
126
  "peerDependenciesMeta": {
127
127
  "@modern-js/runtime": {
@@ -131,11 +131,11 @@
131
131
  "devDependencies": {
132
132
  "react": "^17",
133
133
  "react-dom": "^17",
134
- "@modern-js/core": "1.18.1",
135
- "@modern-js/runtime": "1.18.1",
136
- "@modern-js/bff-core": "1.18.1",
137
- "@scripts/build": "1.18.1",
138
- "@scripts/jest-config": "1.18.1",
134
+ "@modern-js/core": "1.20.0",
135
+ "@modern-js/runtime": "1.20.0",
136
+ "@modern-js/bff-core": "1.20.0",
137
+ "@scripts/build": "1.20.0",
138
+ "@scripts/jest-config": "1.20.0",
139
139
  "@types/jest": "^27",
140
140
  "@types/supertest": "^2.0.11",
141
141
  "@types/node": "^14",
@@ -178,6 +178,5 @@
178
178
  "dev": "modern build --watch",
179
179
  "build": "wireit",
180
180
  "test": "wireit"
181
- },
182
- "readme": "\n<p align=\"center\">\n <a href=\"https://modernjs.dev\" target=\"blank\"><img src=\"https://lf3-static.bytednsdoc.com/obj/eden-cn/ylaelkeh7nuhfnuhf/modernjs-cover.png\" width=\"300\" alt=\"Modern.js Logo\" /></a>\n</p>\n<p align=\"center\">\n现代 Web 工程体系\n <br/>\n <a href=\"https://modernjs.dev\" target=\"blank\">\n modernjs.dev\n </a>\n</p>\n<p align=\"center\">\n The meta-framework suite designed from scratch for frontend-focused modern web development\n</p>\n\n# Introduction\n\n> The doc site ([modernjs.dev](https://modernjs.dev)) and articles are only available in Chinese for now, we are planning to add English versions soon.\n\n- [Modern.js: Hello, World!](https://zhuanlan.zhihu.com/p/426707646)\n\n## Getting Started\n\n- [Quick Start](https://modernjs.dev/docs/start)\n- [Guides](https://modernjs.dev/docs/guides)\n- [API References](https://modernjs.dev/docs/apis)\n\n## Contributing\n\n- [Contributing Guide](https://github.com/modern-js-dev/modern.js/blob/main/CONTRIBUTING.md)\n"
181
+ }
183
182
  }