@modern-js/plugin-testing 1.5.2 → 1.5.3

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 +15 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @modern-js/plugin-testing
2
2
 
3
+ ## 1.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 3f209269: feat(testing): add `afterTest` hook for testing plugin
8
+ - Updated dependencies [4697d1db]
9
+ - Updated dependencies [0ee4bb4e]
10
+ - Updated dependencies [6fa74d5f]
11
+ - Updated dependencies [3f209269]
12
+ - @modern-js/webpack@1.6.0
13
+ - @modern-js/testing@1.5.0
14
+ - @modern-js/utils@1.7.0
15
+ - @modern-js/runtime-core@1.4.4
16
+ - @modern-js/testing-plugin-bff@1.4.1
17
+
3
18
  ## 1.5.1
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.5.2",
14
+ "version": "1.5.3",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -87,17 +87,17 @@
87
87
  "@modern-js-reduck/store": "^1.0.3",
88
88
  "@modern-js/babel-compiler": "^1.2.3",
89
89
  "@modern-js/bff-utils": "^1.2.4",
90
- "@modern-js/runtime-core": "^1.4.3",
91
- "@modern-js/testing": "^1.4.4",
90
+ "@modern-js/runtime-core": "^1.4.4",
91
+ "@modern-js/testing": "^1.5.0",
92
92
  "@modern-js/testing-plugin-bff": "^1.4.1",
93
- "@modern-js/utils": "^1.6.0",
94
- "@modern-js/webpack": "^1.5.7",
93
+ "@modern-js/utils": "^1.7.0",
94
+ "@modern-js/webpack": "^1.6.0",
95
95
  "@testing-library/jest-dom": "^5.14.1",
96
96
  "@testing-library/react": "^12.0.0",
97
97
  "@types/testing-library__jest-dom": "^5.14.3"
98
98
  },
99
99
  "devDependencies": {
100
- "@modern-js/core": "1.9.0",
100
+ "@modern-js/core": "1.10.0",
101
101
  "@scripts/build": "0.0.0",
102
102
  "@scripts/jest-config": "0.0.0",
103
103
  "@types/jest": "^26",
@@ -113,13 +113,13 @@
113
113
  "modernConfig": {},
114
114
  "publishConfig": {
115
115
  "registry": "https://registry.npmjs.org/",
116
- "access": "public",
117
- "types": "./dist/types/index.d.ts"
116
+ "access": "public"
118
117
  },
119
118
  "scripts": {
120
119
  "new": "modern new",
121
120
  "dev": "modern build --watch",
122
121
  "build": "modern build",
123
122
  "test": "jest --passWithNoTests"
124
- }
123
+ },
124
+ "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"
125
125
  }