@itwin/build-tools 4.3.0-dev.8 → 4.3.0

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,42 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Tue, 10 Oct 2023 20:02:00 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 07 Dec 2023 17:43:09 GMT and should not be manually modified.
4
+
5
+ ## 4.3.0
6
+ Thu, 07 Dec 2023 17:43:09 GMT
7
+
8
+ ### Updates
9
+
10
+ - Fix extract api summary script to work with additional '.' symbols in path
11
+
12
+ ## 4.2.4
13
+ Mon, 20 Nov 2023 16:14:45 GMT
14
+
15
+ _Version update only_
16
+
17
+ ## 4.2.3
18
+ Mon, 06 Nov 2023 14:01:52 GMT
19
+
20
+ _Version update only_
21
+
22
+ ## 4.2.2
23
+ Thu, 02 Nov 2023 15:36:20 GMT
24
+
25
+ _Version update only_
26
+
27
+ ## 4.2.1
28
+ Tue, 24 Oct 2023 15:09:13 GMT
29
+
30
+ _Version update only_
31
+
32
+ ## 4.2.0
33
+ Tue, 17 Oct 2023 15:14:32 GMT
34
+
35
+ ### Updates
36
+
37
+ - Changes name of environment variable that provides project root directory. Allows use of RUSHSTACK variable as well and updates README.
38
+ - Increase mocha reporter hang detection timeout duration to allow enough time for Chrome browsers during tests to close gracefully.
39
+ - update api-extractor to 7.36.4
4
40
 
5
41
  ## 4.1.9
6
42
  Tue, 10 Oct 2023 18:48:12 GMT
@@ -101,6 +137,16 @@ Mon, 22 May 2023 15:34:14 GMT
101
137
  - Fixed 'betools docs' script to set 'packageRoot' to correct relative path from root to package source.
102
138
  - Upgrade TypeScript compile target to es2021.
103
139
 
140
+ ## 3.7.17
141
+ Mon, 20 Nov 2023 18:24:23 GMT
142
+
143
+ _Version update only_
144
+
145
+ ## 3.7.16
146
+ Mon, 16 Oct 2023 12:49:07 GMT
147
+
148
+ _Version update only_
149
+
104
150
  ## 3.7.15
105
151
  Tue, 10 Oct 2023 19:58:35 GMT
106
152
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "4.3.0-dev.8",
3
+ "version": "4.3.0",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "@itwin/eslint-plugin": "4.0.0-dev.44",
42
- "@types/node": "18.16.1",
42
+ "@types/node": "~18.16.20",
43
43
  "eslint": "^8.44.0"
44
44
  },
45
45
  "scripts": {
@@ -33,8 +33,8 @@ if (undefined !== argv.gatherFullReport)
33
33
  shouldGenerateFullReport = true;
34
34
 
35
35
  // create output file
36
- const trimmedApiSignature = (argv.apiSignature.split('.'))[0];
37
- const sigFileName = path.basename(path.normalize(trimmedApiSignature));
36
+ const apiSignatureFileName = path.parse(argv.apiSignature).name;
37
+ const sigFileName = (apiSignatureFileName.split('.'))[0]
38
38
  const sigFilePath = path.join(argv.outDir, `${shouldGenerateFullReport ? "summary" : sigFileName}.exports.csv`);
39
39
 
40
40
  const outputLines = [];