@zohodesk/testinglibrary 0.0.6 → 0.0.7

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 +4 -0
  2. package/package.json +6 -4
package/Changelog.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Framework that abstracts the configuration for playwright and Jest
4
4
 
5
+ # 0.0.7
6
+
7
+ - Removed react and react-dom as dependencies. Added this as peer dependency
8
+
5
9
  # 0.0.6
6
10
 
7
11
  ## Provided Initial Support for cucumber feature files
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/testinglibrary",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {
@@ -32,13 +32,15 @@
32
32
  "fast-glob": "^3.3.1",
33
33
  "jest": "^29.6.2",
34
34
  "jest-environment-jsdom": "^29.6.2",
35
- "msw": "^1.2.3",
36
- "react": "16.13.1",
37
- "react-dom": "16.13.1"
35
+ "msw": "^1.2.3"
38
36
  },
39
37
  "bin": {
40
38
  "ZDTestingFramework": "./bin/cli.js"
41
39
  },
40
+ "peerDependencies": {
41
+ "react": "16.13.1",
42
+ "react-dom": "16.13.1"
43
+ },
42
44
  "devDependencies": {
43
45
  "@babel/cli": "^7.22.15",
44
46
  "@babel/core": "^7.22.17",