@itwin/build-tools 5.0.0-dev.99 → 5.1.0-dev.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,11 @@
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 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_
4
9
 
5
10
  ## 4.10.12
6
11
  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.99",
3
+ "version": "5.1.0-dev.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