@itwin/build-tools 5.10.0 → 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,13 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Wed, 03 Jun 2026 20:19:46 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
4
11
 
5
12
  ## 5.10.0
6
13
  Wed, 03 Jun 2026 20:19:46 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "5.10.0",
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;