@itwin/build-tools 5.9.0-dev.1 → 5.9.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 CHANGED
@@ -1,6 +1,21 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Tue, 24 Mar 2026 14:30:44 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 16 Apr 2026 11:06:21 GMT and should not be manually modified.
4
+
5
+ ## 5.8.2
6
+ Thu, 16 Apr 2026 11:05:01 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.8.1
11
+ Fri, 10 Apr 2026 13:02:00 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 5.8.0
16
+ Thu, 02 Apr 2026 18:19:33 GMT
17
+
18
+ _Version update only_
4
19
 
5
20
  ## 5.7.3
6
21
  Tue, 24 Mar 2026 14:29:17 GMT
@@ -47,8 +47,10 @@ const isCI = process.env.CI || process.env.TF_BUILD;
47
47
  if (isCI) {
48
48
  if (typeof (mocha) !== "undefined")
49
49
  mocha.forbidOnly();
50
- else
51
- require.cache[require.resolve("mocha/lib/mocharc.json", { paths: require.main?.paths ?? module.paths })].exports.forbidOnly = true;
50
+ else {
51
+ const mocharc = require(require.resolve("mocha/lib/mocharc.json", { paths: require.main?.paths ?? module.paths }));
52
+ mocharc.forbidOnly = true;
53
+ }
52
54
  }
53
55
  // This is necessary to enable colored output when running in rush test:
54
56
  Object.defineProperty(Base, "color", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "5.9.0-dev.1",
3
+ "version": "5.9.0-dev.11",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {