@itwin/editor-common 5.0.0-dev.11 → 5.0.0-dev.110

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 +61 -1
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,66 @@
1
1
  # Change Log - @itwin/editor-common
2
2
 
3
- This log was last generated on Thu, 14 Nov 2024 18:13:56 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 10 Apr 2025 17:50:15 GMT and should not be manually modified.
4
+
5
+ ## 4.10.13
6
+ Thu, 10 Apr 2025 17:47:21 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 4.10.12
11
+ Wed, 02 Apr 2025 19:35:47 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 4.10.11
16
+ Wed, 19 Mar 2025 15:30:39 GMT
17
+
18
+ _Version update only_
19
+
20
+ ## 4.10.10
21
+ Tue, 11 Mar 2025 15:25:11 GMT
22
+
23
+ _Version update only_
24
+
25
+ ## 4.10.9
26
+ Tue, 11 Mar 2025 05:17:33 GMT
27
+
28
+ _Version update only_
29
+
30
+ ## 4.10.8
31
+ Thu, 06 Mar 2025 14:13:37 GMT
32
+
33
+ _Version update only_
34
+
35
+ ## 4.10.7
36
+ Tue, 18 Feb 2025 17:27:03 GMT
37
+
38
+ _Version update only_
39
+
40
+ ## 4.10.6
41
+ Fri, 24 Jan 2025 08:02:40 GMT
42
+
43
+ _Version update only_
44
+
45
+ ## 4.10.5
46
+ Tue, 21 Jan 2025 21:56:45 GMT
47
+
48
+ _Version update only_
49
+
50
+ ## 4.10.4
51
+ Mon, 13 Jan 2025 14:06:43 GMT
52
+
53
+ _Version update only_
54
+
55
+ ## 4.10.3
56
+ Mon, 06 Jan 2025 14:00:13 GMT
57
+
58
+ _Version update only_
59
+
60
+ ## 4.10.2
61
+ Thu, 21 Nov 2024 15:22:20 GMT
62
+
63
+ _Version update only_
4
64
 
5
65
  ## 4.10.1
6
66
  Thu, 14 Nov 2024 18:11:00 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/editor-common",
3
- "version": "5.0.0-dev.11",
3
+ "version": "5.0.0-dev.110",
4
4
  "description": "iTwin.js editing properties common to frontend and backend",
5
5
  "main": "lib/cjs/editor-common.js",
6
6
  "module": "lib/esm/editor-common.js",
@@ -23,9 +23,9 @@
23
23
  "url": "http://www.bentley.com"
24
24
  },
25
25
  "peerDependencies": {
26
- "@itwin/core-bentley": "^5.0.0-dev.11",
27
- "@itwin/core-geometry": "^5.0.0-dev.11",
28
- "@itwin/core-common": "^5.0.0-dev.11"
26
+ "@itwin/core-geometry": "5.0.0-dev.110",
27
+ "@itwin/core-bentley": "5.0.0-dev.110",
28
+ "@itwin/core-common": "5.0.0-dev.110"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@itwin/eslint-plugin": "5.0.0-dev.1",
@@ -33,19 +33,19 @@
33
33
  "@types/mocha": "^10.0.6",
34
34
  "chai": "^4.3.10",
35
35
  "eslint": "^9.13.0",
36
- "mocha": "^10.2.0",
37
- "rimraf": "^3.0.2",
36
+ "mocha": "^11.1.0",
37
+ "rimraf": "^6.0.1",
38
38
  "typescript": "~5.6.2",
39
- "@itwin/core-bentley": "5.0.0-dev.11",
40
- "@itwin/build-tools": "5.0.0-dev.11",
41
- "@itwin/core-geometry": "5.0.0-dev.11",
42
- "@itwin/core-common": "5.0.0-dev.11"
39
+ "@itwin/build-tools": "5.0.0-dev.110",
40
+ "@itwin/core-bentley": "5.0.0-dev.110",
41
+ "@itwin/core-geometry": "5.0.0-dev.110",
42
+ "@itwin/core-common": "5.0.0-dev.110"
43
43
  },
44
44
  "scripts": {
45
45
  "build": "npm run -s build:cjs && npm run -s build:esm",
46
46
  "build:cjs": "tsc 1>&2 --outDir lib/cjs",
47
- "build:esm": "tsc 1>&2 --module ES2020 --outDir lib/esm",
48
- "clean": "rimraf lib .rush/temp/package-deps*.json",
47
+ "build:esm": "tsc 1>&2 --module ES2022 --outDir lib/esm",
48
+ "clean": "rimraf -g lib .rush/temp/package-deps*.json",
49
49
  "docs": "betools docs --json=../../generated-docs/editor/editor-common/file.json --tsIndexFile=./editor-common.ts --onlyJson",
50
50
  "extract-api": "betools extract-api --entry=editor-common",
51
51
  "lint": "eslint --max-warnings 0 ./src/**/*.ts 1>&2",