@itwin/build-tools 5.0.0-dev.99 → 5.0.1
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 +68 -1
- package/package.json +2 -2
- package/scripts/extract-api-summary.js +2 -2
- package/scripts/extract-api.js +4 -0
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,73 @@
|
|
1
1
|
# Change Log - @itwin/build-tools
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Tue, 17 Jun 2025 18:33:51 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
## 5.0.1
|
6
|
+
Tue, 17 Jun 2025 18:33:51 GMT
|
7
|
+
|
8
|
+
_Version update only_
|
9
|
+
|
10
|
+
## 5.0.0
|
11
|
+
Fri, 13 Jun 2025 20:25:38 GMT
|
12
|
+
|
13
|
+
### Updates
|
14
|
+
|
15
|
+
- Bump `typedoc-plugin-merge-modules` dependency to a version that supports typedoc `0.26`.
|
16
|
+
- Bump `typedoc` dependency to a version that supports typescript `5.6`.
|
17
|
+
- Deprecate unused --includes flag
|
18
|
+
- Fix `typedoc` not finding `typedoc-plugin-merge-modules` plugin when hoisting is disabled.
|
19
|
+
- add temporary fix for typedoc@0.26 issue #2802
|
20
|
+
- Upgrade @microsoft/api-extractor to 7.49
|
21
|
+
- Upgrade compile target to ES2023
|
22
|
+
- Dropped support for Node 18
|
23
|
+
- Enabled `useDefineForClassFields` TypeScript config flag
|
24
|
+
- Bumped `cross-spawn` to `7.0.5`
|
25
|
+
- Add a `tsconfig` option to `docs` command to allow specifying a custom TS configuration.
|
26
|
+
|
27
|
+
## 4.11.6
|
28
|
+
Mon, 16 Jun 2025 15:00:15 GMT
|
29
|
+
|
30
|
+
_Version update only_
|
31
|
+
|
32
|
+
## 4.11.5
|
33
|
+
Fri, 06 Jun 2025 13:41:18 GMT
|
34
|
+
|
35
|
+
_Version update only_
|
36
|
+
|
37
|
+
## 4.11.4
|
38
|
+
Tue, 03 Jun 2025 16:15:19 GMT
|
39
|
+
|
40
|
+
_Version update only_
|
41
|
+
|
42
|
+
## 4.11.3
|
43
|
+
Wed, 28 May 2025 13:56:22 GMT
|
44
|
+
|
45
|
+
_Version update only_
|
46
|
+
|
47
|
+
## 4.11.2
|
48
|
+
Tue, 20 May 2025 20:14:45 GMT
|
49
|
+
|
50
|
+
_Version update only_
|
51
|
+
|
52
|
+
## 4.11.1
|
53
|
+
Wed, 30 Apr 2025 13:13:21 GMT
|
54
|
+
|
55
|
+
_Version update only_
|
56
|
+
|
57
|
+
## 4.11.0
|
58
|
+
Wed, 16 Apr 2025 15:50:28 GMT
|
59
|
+
|
60
|
+
### Updates
|
61
|
+
|
62
|
+
- Bump `typedoc` dependency to a version that supports typescript `5.6`.
|
63
|
+
- Deprecate unused --includes flag
|
64
|
+
- add temporary fix for typedoc@0.26 issue #2802
|
65
|
+
- Bumped `cross-spawn` to `7.0.5`
|
66
|
+
|
67
|
+
## 4.10.13
|
68
|
+
Thu, 10 Apr 2025 17:47:21 GMT
|
69
|
+
|
70
|
+
_Version update only_
|
4
71
|
|
5
72
|
## 4.10.12
|
6
73
|
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.
|
3
|
+
"version": "5.0.1",
|
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.
|
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
|
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;
|
package/scripts/extract-api.js
CHANGED
@@ -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
|