@itwin/build-tools 5.10.0-dev.9 → 5.10.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 CHANGED
@@ -1,6 +1,35 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Fri, 08 May 2026 20:37:55 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 08 Jun 2026 18:45:58 GMT and should not be manually modified.
4
+
5
+ ## 5.10.1
6
+ Mon, 08 Jun 2026 18:45:58 GMT
7
+
8
+ ### Updates
9
+
10
+ - extract-api.js now checks the standard CI env var (in addition to TF_BUILD) so api-extractor runs in strict CI mode on GitHub Actions and other standard CI platforms without requiring a separate git-diff assertion step
11
+
12
+ ## 5.10.0
13
+ Wed, 03 Jun 2026 20:19:46 GMT
14
+
15
+ ### Updates
16
+
17
+ - Bumped `typedoc` version
18
+
19
+ ## 5.9.5
20
+ Mon, 01 Jun 2026 17:34:00 GMT
21
+
22
+ _Version update only_
23
+
24
+ ## 5.9.4
25
+ Tue, 19 May 2026 19:45:27 GMT
26
+
27
+ _Version update only_
28
+
29
+ ## 5.9.3
30
+ Fri, 15 May 2026 11:25:54 GMT
31
+
32
+ _Version update only_
4
33
 
5
34
  ## 5.9.2
6
35
  Fri, 08 May 2026 20:36:41 GMT
@@ -19,6 +48,13 @@ Mon, 04 May 2026 16:32:08 GMT
19
48
 
20
49
  - Update @microsoft/api-extractor to ~7.58.7 (removes lodash CVE GHSA-r5fr-rjxr-66jc, GHSA-f23m-r3pf-42rh).
21
50
 
51
+ ## 5.8.5
52
+ Thu, 14 May 2026 19:12:21 GMT
53
+
54
+ ### Updates
55
+
56
+ - Update @microsoft/api-extractor to ~7.58.7 (removes lodash CVE GHSA-r5fr-rjxr-66jc, GHSA-f23m-r3pf-42rh).
57
+
22
58
  ## 5.8.4
23
59
  Thu, 23 Apr 2026 18:05:13 GMT
24
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "5.10.0-dev.9",
3
+ "version": "5.10.1",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -20,7 +20,7 @@ function getEntryPointDirName(){
20
20
  return dirname === "." ? "./lib/cjs" : dirname;
21
21
  };
22
22
 
23
- const isCI = (process.env.TF_BUILD);
23
+ const isCI = (process.env.TF_BUILD || process.env.CI);
24
24
  const entryPointFileName = path.basename(argv.entry);
25
25
  const entryPointDirName = getEntryPointDirName();
26
26
  const ignoreMissingTags = argv.ignoreMissingTags;