@itwin/build-tools 5.0.0-dev.6 → 5.0.0-dev.62

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,6 +1,50 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Wed, 06 Nov 2024 19:24:30 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 24 Jan 2025 08:05:17 GMT and should not be manually modified.
4
+
5
+ ## 4.10.6
6
+ Fri, 24 Jan 2025 08:02:40 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 4.10.5
11
+ Tue, 21 Jan 2025 21:56:45 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 4.10.4
16
+ Mon, 13 Jan 2025 14:06:43 GMT
17
+
18
+ _Version update only_
19
+
20
+ ## 4.10.3
21
+ Mon, 06 Jan 2025 14:00:13 GMT
22
+
23
+ ### Updates
24
+
25
+ - add temporary fix for typedoc@0.26 issue #2802
26
+
27
+ ## 4.10.2
28
+ Thu, 21 Nov 2024 15:22:20 GMT
29
+
30
+ ### Updates
31
+
32
+ - Bumped `cross-spawn` to `7.0.5`
33
+
34
+ ## 4.10.1
35
+ Thu, 14 Nov 2024 18:11:00 GMT
36
+
37
+ ### Updates
38
+
39
+ - Bump `typedoc` dependency to a version that supports typescript `5.6`.
40
+ - Deprecate unused --includes flag
41
+
42
+ ## 4.10.0
43
+ Wed, 13 Nov 2024 15:23:38 GMT
44
+
45
+ ### Updates
46
+
47
+ - Allow specifying a relative directory for the `entry` argument in the `extract-api` command.
4
48
 
5
49
  ## 4.9.7
6
50
  Wed, 06 Nov 2024 19:23:04 GMT
@@ -56,6 +56,7 @@ Object.defineProperty(Base, "color", {
56
56
  set: () => { },
57
57
  });
58
58
  class BentleyMochaReporter extends Spec {
59
+ _junitReporter;
59
60
  constructor(_runner, _options) {
60
61
  super(...arguments);
61
62
  this._junitReporter = new MochaJUnitReporter(...arguments);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "5.0.0-dev.6",
3
+ "version": "5.0.0-dev.62",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -21,10 +21,10 @@
21
21
  "url": "http://www.bentley.com"
22
22
  },
23
23
  "dependencies": {
24
- "@microsoft/api-extractor": "~7.47.10",
24
+ "@microsoft/api-extractor": "~7.49.1",
25
25
  "chalk": "^3.0.0",
26
26
  "cpx2": "^3.0.0",
27
- "cross-spawn": "^7.0.1",
27
+ "cross-spawn": "^7.0.5",
28
28
  "fs-extra": "^8.1.0",
29
29
  "glob": "^10.3.12",
30
30
  "mocha": "^10.2.0",
@@ -32,14 +32,14 @@
32
32
  "rimraf": "^3.0.2",
33
33
  "tree-kill": "^1.2.2",
34
34
  "typedoc": "^0.26.11",
35
- "typedoc-plugin-merge-modules": "^5.1.0",
35
+ "typedoc-plugin-merge-modules": "^6.0.3",
36
36
  "typescript": "~5.6.2",
37
37
  "wtfnode": "^0.9.1",
38
38
  "yargs": "^17.4.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@itwin/eslint-plugin": "5.0.0-dev.1",
42
- "@types/node": "~18.16.20",
42
+ "@types/node": "~20.17.0",
43
43
  "eslint": "^9.13.0"
44
44
  },
45
45
  "scripts": {
package/scripts/docs.js CHANGED
@@ -52,11 +52,13 @@ const readmeOption = (argv.readme === undefined) ? "none" : argv.readme;
52
52
  const options = [
53
53
  "--hideGenerator",
54
54
  "--logLevel",
55
- "Error"
55
+ "Error",
56
+ "--cascadedModifierTags", // workaround for https://github.com/TypeStrong/typedoc/issues/2802
57
+ "@experimental"
56
58
  ];
57
59
 
58
60
  const pluginOptions = [
59
- "--plugin", "typedoc-plugin-merge-modules",
61
+ "--plugin", require.resolve("typedoc-plugin-merge-modules"),
60
62
  "--mergeModulesMergeMode", "module",
61
63
  ];
62
64
 
@@ -23,6 +23,7 @@
23
23
  "strict": true,
24
24
  "strictNullChecks": true,
25
25
  "stripInternal": false,
26
- "target": "ES2021"
26
+ "target": "ES2023",
27
+ "lib": ["ES2023", "DOM", "DOM.Iterable", "ESNext.Disposable"]
27
28
  }
28
29
  }