@itwin/build-tools 5.11.0-dev.1 → 5.11.0-dev.11
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 +25 -1
- package/package.json +1 -1
- package/scripts/extract-api.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
1
|
# Change Log - @itwin/build-tools
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 11 Jun 2026 21:11:10 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.10.2
|
|
6
|
+
Thu, 11 Jun 2026 21:09:38 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 5.10.1
|
|
11
|
+
Mon, 08 Jun 2026 18:45:58 GMT
|
|
12
|
+
|
|
13
|
+
### Updates
|
|
14
|
+
|
|
15
|
+
- 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
|
|
16
|
+
|
|
17
|
+
## 5.10.0
|
|
18
|
+
Wed, 03 Jun 2026 20:19:46 GMT
|
|
19
|
+
|
|
20
|
+
### Updates
|
|
21
|
+
|
|
22
|
+
- Bumped `typedoc` version
|
|
23
|
+
|
|
24
|
+
## 5.9.5
|
|
25
|
+
Mon, 01 Jun 2026 17:34:00 GMT
|
|
26
|
+
|
|
27
|
+
_Version update only_
|
|
4
28
|
|
|
5
29
|
## 5.9.4
|
|
6
30
|
Tue, 19 May 2026 19:45:27 GMT
|
package/package.json
CHANGED
package/scripts/extract-api.js
CHANGED
|
@@ -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;
|