@itwin/build-tools 4.2.0-dev.9 → 4.3.0-dev.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,36 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Thu, 17 Aug 2023 07:50:06 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 29 Sep 2023 18:24:48 GMT and should not be manually modified.
4
+
5
+ ## 4.1.7
6
+ Thu, 28 Sep 2023 21:41:33 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 4.1.6
11
+ Tue, 12 Sep 2023 15:38:52 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 4.1.5
16
+ Fri, 08 Sep 2023 13:37:23 GMT
17
+
18
+ _Version update only_
19
+
20
+ ## 4.1.4
21
+ Thu, 07 Sep 2023 18:26:02 GMT
22
+
23
+ _Version update only_
24
+
25
+ ## 4.1.3
26
+ Wed, 30 Aug 2023 15:35:27 GMT
27
+
28
+ _Version update only_
29
+
30
+ ## 4.1.2
31
+ Wed, 23 Aug 2023 15:25:29 GMT
32
+
33
+ _Version update only_
4
34
 
5
35
  ## 4.1.1
6
36
  Fri, 18 Aug 2023 13:02:53 GMT
@@ -61,6 +91,11 @@ Mon, 22 May 2023 15:34:14 GMT
61
91
  - Fixed 'betools docs' script to set 'packageRoot' to correct relative path from root to package source.
62
92
  - Upgrade TypeScript compile target to es2021.
63
93
 
94
+ ## 3.7.14
95
+ Fri, 29 Sep 2023 16:57:16 GMT
96
+
97
+ _Version update only_
98
+
64
99
  ## 3.7.13
65
100
  Tue, 08 Aug 2023 19:49:17 GMT
66
101
 
@@ -78,9 +78,9 @@ class BentleyMochaReporter extends Spec {
78
78
  // Detect hangs caused by tests that leave timers/other handles open - not possible in electron frontends.
79
79
  if (!("electron" in process.versions)) {
80
80
  // NB: By calling unref() on this timer, we stop it from keeping the process alive, so it will only fire if _something else_ is still keeping
81
- // the process alive after 5 seconds. This also has the benefit of preventing the timer from showing up in wtfnode's dump of open handles.
81
+ // the process alive after 30 seconds. This also has the benefit of preventing the timer from showing up in wtfnode's dump of open handles.
82
82
  setTimeout(() => {
83
- logBuildError(`Handle leak detected. Node was still running 5 seconds after tests completed.`);
83
+ logBuildError(`Handle leak detected. Node was still running 30 seconds after tests completed.`);
84
84
  if (debugLeaks) {
85
85
  const wtf = require("wtfnode");
86
86
  wtf.setLogger("info", console.error);
@@ -100,7 +100,7 @@ class BentleyMochaReporter extends Spec {
100
100
  }
101
101
  // Not sure why, but process.exit(1) wasn't working here...
102
102
  process.kill(process.pid);
103
- }, 5000).unref();
103
+ }, 30 * 1000).unref();
104
104
  }
105
105
  if (!this.stats.pending)
106
106
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "4.2.0-dev.9",
3
+ "version": "4.3.0-dev.1",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {