@itwin/presentation-testing 5.1.0 → 5.1.2

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Change Log - @itwin/presentation-testing
2
2
 
3
+ ## 5.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @itwin/presentation-components@5.6.1
9
+
10
+ ## 5.1.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [#760](https://github.com/iTwin/presentation/pull/760): Added missing `package.json` file under `cjs` folder. It is needed for package to work as commonjs module.
15
+
3
16
  ## 5.1.0
4
17
 
5
18
  ### Minor Changes
@@ -0,0 +1 @@
1
+ { "type": "commonjs" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/presentation-testing",
3
- "version": "5.1.0",
3
+ "version": "5.1.2",
4
4
  "description": "Testing utilities for iTwin.js Presentation library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -32,7 +32,7 @@
32
32
  "dependencies": {
33
33
  "rimraf": "^6.0.1",
34
34
  "sanitize-filename": "^1.6.3",
35
- "@itwin/presentation-components": "^5.6.0"
35
+ "@itwin/presentation-components": "^5.6.1"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@itwin/appui-abstract": "^4.1.0",
@@ -46,24 +46,24 @@
46
46
  "@itwin/presentation-frontend": "^4.1.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@itwin/appui-abstract": "^4.9.0",
50
- "@itwin/build-tools": "^4.10.0-dev.33",
51
- "@itwin/components-react": "^4.17.0",
52
- "@itwin/core-backend": "^4.9.0",
53
- "@itwin/core-bentley": "^4.9.0",
54
- "@itwin/core-common": "^4.9.0",
55
- "@itwin/core-frontend": "^4.9.0",
56
- "@itwin/core-geometry": "^4.9.0",
57
- "@itwin/core-orbitgt": "^4.9.0",
58
- "@itwin/core-quantity": "^4.9.0",
59
- "@itwin/core-react": "^4.17.0",
60
- "@itwin/ecschema-metadata": "^4.9.0",
49
+ "@itwin/appui-abstract": "^4.10.1",
50
+ "@itwin/build-tools": "^4.10.1",
51
+ "@itwin/components-react": "^4.17.5",
52
+ "@itwin/core-backend": "^4.10.1",
53
+ "@itwin/core-bentley": "^4.10.1",
54
+ "@itwin/core-common": "^4.10.1",
55
+ "@itwin/core-frontend": "^4.10.1",
56
+ "@itwin/core-geometry": "^4.10.1",
57
+ "@itwin/core-orbitgt": "^4.10.1",
58
+ "@itwin/core-quantity": "^4.10.1",
59
+ "@itwin/core-react": "^4.17.5",
60
+ "@itwin/ecschema-metadata": "^4.10.1",
61
61
  "@itwin/eslint-plugin": "5.0.0-dev.1",
62
- "@itwin/presentation-backend": "^4.9.0",
63
- "@itwin/presentation-common": "^4.9.0",
64
- "@itwin/presentation-frontend": "^4.9.0",
65
- "@itwin/webgl-compatibility": "^4.9.0",
66
- "@opentelemetry/api": "^1.8.0",
62
+ "@itwin/presentation-backend": "^4.10.1",
63
+ "@itwin/presentation-common": "^4.10.1",
64
+ "@itwin/presentation-frontend": "^4.10.1",
65
+ "@itwin/webgl-compatibility": "^4.10.1",
66
+ "@opentelemetry/api": "^1.9.0",
67
67
  "@types/chai": "^4.3.16",
68
68
  "@types/chai-as-promised": "^7.1.8",
69
69
  "@types/chai-jest-snapshot": "^1.3.8",
@@ -80,7 +80,7 @@
80
80
  "eslint": "^9.13.0",
81
81
  "global-jsdom": "^25.0.0",
82
82
  "ignore-styles": "^5.0.1",
83
- "inversify": "^6.0.2",
83
+ "inversify": "~6.0.2",
84
84
  "jsdom": "^25.0.1",
85
85
  "mocha": "^10.7.3",
86
86
  "react": "^18.3.1",
@@ -101,7 +101,7 @@
101
101
  "cover": "c8 npm -s test",
102
102
  "docs": "npm run -s docs:reference && npm run -s docs:changelog",
103
103
  "docs:changelog": "cpx ./CHANGELOG.md ./build/docs/reference/presentation-testing",
104
- "docs:reference": "cross-env NODE_PROJECT_ROOT_DIRECTORY=../../ betools docs --includes=./build/docs/extract --json=./build/docs/reference/presentation-testing/file.json --tsIndexFile=presentation-testing.ts --onlyJson --testExcludeGlob=./src/test/**",
104
+ "docs:reference": "cross-env NODE_PROJECT_ROOT_DIRECTORY=../../ betools docs --json=./build/docs/reference/presentation-testing/file.json --tsIndexFile=presentation-testing.ts --onlyJson --testExcludeGlob=./src/test/**",
105
105
  "lint": "eslint ./src/**/*.ts",
106
106
  "test:dev": "cross-env NODE_OPTIONS=\"--import presentation-test-utilities/node-hooks/ignore-styles\" mocha --enable-source-maps --config ./.mocharc.json",
107
107
  "test": "npm run test:dev",