@itwin/build-tools 4.3.0-dev.9 → 4.3.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 +52 -1
- package/package.json +2 -2
- package/scripts/extract-api-summary.js +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,47 @@
|
|
1
1
|
# Change Log - @itwin/build-tools
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Wed, 13 Dec 2023 17:25:54 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
## 4.3.1
|
6
|
+
Wed, 13 Dec 2023 17:25:54 GMT
|
7
|
+
|
8
|
+
_Version update only_
|
9
|
+
|
10
|
+
## 4.3.0
|
11
|
+
Thu, 07 Dec 2023 17:43:09 GMT
|
12
|
+
|
13
|
+
### Updates
|
14
|
+
|
15
|
+
- Fix extract api summary script to work with additional '.' symbols in path
|
16
|
+
|
17
|
+
## 4.2.4
|
18
|
+
Mon, 20 Nov 2023 16:14:45 GMT
|
19
|
+
|
20
|
+
_Version update only_
|
21
|
+
|
22
|
+
## 4.2.3
|
23
|
+
Mon, 06 Nov 2023 14:01:52 GMT
|
24
|
+
|
25
|
+
_Version update only_
|
26
|
+
|
27
|
+
## 4.2.2
|
28
|
+
Thu, 02 Nov 2023 15:36:20 GMT
|
29
|
+
|
30
|
+
_Version update only_
|
31
|
+
|
32
|
+
## 4.2.1
|
33
|
+
Tue, 24 Oct 2023 15:09:13 GMT
|
34
|
+
|
35
|
+
_Version update only_
|
36
|
+
|
37
|
+
## 4.2.0
|
38
|
+
Tue, 17 Oct 2023 15:14:32 GMT
|
39
|
+
|
40
|
+
### Updates
|
41
|
+
|
42
|
+
- Changes name of environment variable that provides project root directory. Allows use of RUSHSTACK variable as well and updates README.
|
43
|
+
- Increase mocha reporter hang detection timeout duration to allow enough time for Chrome browsers during tests to close gracefully.
|
44
|
+
- update api-extractor to 7.36.4
|
4
45
|
|
5
46
|
## 4.1.9
|
6
47
|
Tue, 10 Oct 2023 18:48:12 GMT
|
@@ -101,6 +142,16 @@ Mon, 22 May 2023 15:34:14 GMT
|
|
101
142
|
- Fixed 'betools docs' script to set 'packageRoot' to correct relative path from root to package source.
|
102
143
|
- Upgrade TypeScript compile target to es2021.
|
103
144
|
|
145
|
+
## 3.8.0
|
146
|
+
Fri, 08 Dec 2023 15:23:59 GMT
|
147
|
+
|
148
|
+
_Version update only_
|
149
|
+
|
150
|
+
## 3.7.17
|
151
|
+
Mon, 20 Nov 2023 18:24:23 GMT
|
152
|
+
|
153
|
+
_Version update only_
|
154
|
+
|
104
155
|
## 3.7.16
|
105
156
|
Mon, 16 Oct 2023 12:49:07 GMT
|
106
157
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@itwin/build-tools",
|
3
|
-
"version": "4.3.
|
3
|
+
"version": "4.3.1",
|
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.
|
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
|
37
|
-
const sigFileName =
|
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 = [];
|