@itwin/build-tools 4.2.0-dev.9 → 4.2.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,60 @@
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 Tue, 24 Oct 2023 15:09:13 GMT and should not be manually modified.
4
+
5
+ ## 4.2.1
6
+ Tue, 24 Oct 2023 15:09:13 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 4.2.0
11
+ Tue, 17 Oct 2023 15:14:32 GMT
12
+
13
+ ### Updates
14
+
15
+ - Changes name of environment variable that provides project root directory. Allows use of RUSHSTACK variable as well and updates README.
16
+ - Increase mocha reporter hang detection timeout duration to allow enough time for Chrome browsers during tests to close gracefully.
17
+ - update api-extractor to 7.36.4
18
+
19
+ ## 4.1.9
20
+ Tue, 10 Oct 2023 18:48:12 GMT
21
+
22
+ _Version update only_
23
+
24
+ ## 4.1.8
25
+ Fri, 06 Oct 2023 04:00:18 GMT
26
+
27
+ _Version update only_
28
+
29
+ ## 4.1.7
30
+ Thu, 28 Sep 2023 21:41:33 GMT
31
+
32
+ _Version update only_
33
+
34
+ ## 4.1.6
35
+ Tue, 12 Sep 2023 15:38:52 GMT
36
+
37
+ _Version update only_
38
+
39
+ ## 4.1.5
40
+ Fri, 08 Sep 2023 13:37:23 GMT
41
+
42
+ _Version update only_
43
+
44
+ ## 4.1.4
45
+ Thu, 07 Sep 2023 18:26:02 GMT
46
+
47
+ _Version update only_
48
+
49
+ ## 4.1.3
50
+ Wed, 30 Aug 2023 15:35:27 GMT
51
+
52
+ _Version update only_
53
+
54
+ ## 4.1.2
55
+ Wed, 23 Aug 2023 15:25:29 GMT
56
+
57
+ _Version update only_
4
58
 
5
59
  ## 4.1.1
6
60
  Fri, 18 Aug 2023 13:02:53 GMT
@@ -61,6 +115,21 @@ Mon, 22 May 2023 15:34:14 GMT
61
115
  - Fixed 'betools docs' script to set 'packageRoot' to correct relative path from root to package source.
62
116
  - Upgrade TypeScript compile target to es2021.
63
117
 
118
+ ## 3.7.16
119
+ Mon, 16 Oct 2023 12:49:07 GMT
120
+
121
+ _Version update only_
122
+
123
+ ## 3.7.15
124
+ Tue, 10 Oct 2023 19:58:35 GMT
125
+
126
+ _Version update only_
127
+
128
+ ## 3.7.14
129
+ Fri, 29 Sep 2023 16:57:16 GMT
130
+
131
+ _Version update only_
132
+
64
133
  ## 3.7.13
65
134
  Tue, 08 Aug 2023 19:49:17 GMT
66
135
 
@@ -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.2.1",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {