@itwin/build-tools 5.0.0-dev.98 → 5.0.0

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,63 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Wed, 02 Apr 2025 19:38:36 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 13 Jun 2025 20:25:38 GMT and should not be manually modified.
4
+
5
+ ## 5.0.0
6
+ Fri, 13 Jun 2025 20:25:38 GMT
7
+
8
+ ### Updates
9
+
10
+ - Bump `typedoc-plugin-merge-modules` dependency to a version that supports typedoc `0.26`.
11
+ - Bump `typedoc` dependency to a version that supports typescript `5.6`.
12
+ - Deprecate unused --includes flag
13
+ - Fix `typedoc` not finding `typedoc-plugin-merge-modules` plugin when hoisting is disabled.
14
+ - add temporary fix for typedoc@0.26 issue #2802
15
+ - Upgrade @microsoft/api-extractor to 7.49
16
+ - Upgrade compile target to ES2023
17
+ - Dropped support for Node 18
18
+ - Enabled `useDefineForClassFields` TypeScript config flag
19
+ - Bumped `cross-spawn` to `7.0.5`
20
+ - Add a `tsconfig` option to `docs` command to allow specifying a custom TS configuration.
21
+
22
+ ## 4.11.5
23
+ Fri, 06 Jun 2025 13:41:18 GMT
24
+
25
+ _Version update only_
26
+
27
+ ## 4.11.4
28
+ Tue, 03 Jun 2025 16:15:19 GMT
29
+
30
+ _Version update only_
31
+
32
+ ## 4.11.3
33
+ Wed, 28 May 2025 13:56:22 GMT
34
+
35
+ _Version update only_
36
+
37
+ ## 4.11.2
38
+ Tue, 20 May 2025 20:14:45 GMT
39
+
40
+ _Version update only_
41
+
42
+ ## 4.11.1
43
+ Wed, 30 Apr 2025 13:13:21 GMT
44
+
45
+ _Version update only_
46
+
47
+ ## 4.11.0
48
+ Wed, 16 Apr 2025 15:50:28 GMT
49
+
50
+ ### Updates
51
+
52
+ - Bump `typedoc` dependency to a version that supports typescript `5.6`.
53
+ - Deprecate unused --includes flag
54
+ - add temporary fix for typedoc@0.26 issue #2802
55
+ - Bumped `cross-spawn` to `7.0.5`
56
+
57
+ ## 4.10.13
58
+ Thu, 10 Apr 2025 17:47:21 GMT
59
+
60
+ _Version update only_
4
61
 
5
62
  ## 4.10.12
6
63
  Wed, 02 Apr 2025 19:35:47 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "5.0.0-dev.98",
3
+ "version": "5.0.0",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -21,7 +21,7 @@
21
21
  "url": "http://www.bentley.com"
22
22
  },
23
23
  "dependencies": {
24
- "@microsoft/api-extractor": "~7.49.1",
24
+ "@microsoft/api-extractor": "~7.52.3",
25
25
  "chalk": "^3.0.0",
26
26
  "cpx2": "^8.0.0",
27
27
  "cross-spawn": "^7.0.5",
@@ -80,8 +80,8 @@ fs.readFile(argv.apiSignature, function (error, data) {
80
80
 
81
81
  previousLines.push(match[1]);
82
82
 
83
- // handle deprecated separate since it can be used together with the other release tags
84
- match = line.match(/\s@(deprecated)/);
83
+ // handle deprecated and preview separately since they can be used together with the other release tags
84
+ match = line.match(/\s@(deprecated|preview)/);
85
85
  if (null !== match) {
86
86
  previousLines.push(match[1]);
87
87
  return;
@@ -60,9 +60,13 @@ const config = {
60
60
  mainEntryPointFilePath: `${entryPointFileName}.d.ts`,
61
61
  apiReport: {
62
62
  enabled: true,
63
+ reportFileName: `${entryPointFileName}.api.md`,
63
64
  reportFolder: path.resolve(apiReportFolder),
64
65
  reportTempFolder: path.resolve(apiReportTempFolder),
65
66
  includeForgottenExports: !!includeUnexportedApis,
67
+ tagsToReport: {
68
+ "@preview": true
69
+ },
66
70
  },
67
71
  docModel: {
68
72
  enabled: false