@itwin/build-tools 5.11.0-dev.2 → 5.11.0-dev.21

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,30 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Mon, 01 Jun 2026 17:37:05 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 16 Jun 2026 13:00:23 GMT and should not be manually modified.
4
+
5
+ ## 5.10.3
6
+ Tue, 16 Jun 2026 12:58:32 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.10.2
11
+ Thu, 11 Jun 2026 21:09:38 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 5.10.1
16
+ Mon, 08 Jun 2026 18:45:58 GMT
17
+
18
+ ### Updates
19
+
20
+ - 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
21
+
22
+ ## 5.10.0
23
+ Wed, 03 Jun 2026 20:19:46 GMT
24
+
25
+ ### Updates
26
+
27
+ - Bumped `typedoc` version
4
28
 
5
29
  ## 5.9.5
6
30
  Mon, 01 Jun 2026 17:34:00 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "5.11.0-dev.2",
3
+ "version": "5.11.0-dev.21",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -27,7 +27,6 @@
27
27
  "cross-spawn": "^7.0.5",
28
28
  "fs-extra": "^8.1.0",
29
29
  "glob": "^10.5.0",
30
- "mocha": "^11.1.0",
31
30
  "mocha-junit-reporter": "^2.0.2",
32
31
  "rimraf": "^6.0.1",
33
32
  "tree-kill": "^1.2.2",
@@ -37,10 +36,19 @@
37
36
  "wtfnode": "^0.9.1",
38
37
  "yargs": "^17.4.0"
39
38
  },
39
+ "peerDependencies": {
40
+ "mocha": "^11.1.0"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "mocha": {
44
+ "optional": true
45
+ }
46
+ },
40
47
  "devDependencies": {
41
48
  "@itwin/eslint-plugin": "^6.0.0",
42
49
  "@types/node": "~20.17.0",
43
- "eslint": "^9.31.0"
50
+ "eslint": "^9.31.0",
51
+ "mocha": "^11.1.0"
44
52
  },
45
53
  "scripts": {
46
54
  "build": "tsc 1>&2",
@@ -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;