@itwin/build-tools 4.3.0-dev.8 → 4.4.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 +40 -1
- package/package.json +2 -2
- package/scripts/extract-api-summary.js +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,35 @@
|
|
1
1
|
# Change Log - @itwin/build-tools
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Thu, 30 Nov 2023 17:07:27 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
## 4.2.4
|
6
|
+
Mon, 20 Nov 2023 16:14:45 GMT
|
7
|
+
|
8
|
+
_Version update only_
|
9
|
+
|
10
|
+
## 4.2.3
|
11
|
+
Mon, 06 Nov 2023 14:01:52 GMT
|
12
|
+
|
13
|
+
_Version update only_
|
14
|
+
|
15
|
+
## 4.2.2
|
16
|
+
Thu, 02 Nov 2023 15:36:20 GMT
|
17
|
+
|
18
|
+
_Version update only_
|
19
|
+
|
20
|
+
## 4.2.1
|
21
|
+
Tue, 24 Oct 2023 15:09:13 GMT
|
22
|
+
|
23
|
+
_Version update only_
|
24
|
+
|
25
|
+
## 4.2.0
|
26
|
+
Tue, 17 Oct 2023 15:14:32 GMT
|
27
|
+
|
28
|
+
### Updates
|
29
|
+
|
30
|
+
- Changes name of environment variable that provides project root directory. Allows use of RUSHSTACK variable as well and updates README.
|
31
|
+
- Increase mocha reporter hang detection timeout duration to allow enough time for Chrome browsers during tests to close gracefully.
|
32
|
+
- update api-extractor to 7.36.4
|
4
33
|
|
5
34
|
## 4.1.9
|
6
35
|
Tue, 10 Oct 2023 18:48:12 GMT
|
@@ -101,6 +130,16 @@ Mon, 22 May 2023 15:34:14 GMT
|
|
101
130
|
- Fixed 'betools docs' script to set 'packageRoot' to correct relative path from root to package source.
|
102
131
|
- Upgrade TypeScript compile target to es2021.
|
103
132
|
|
133
|
+
## 3.7.17
|
134
|
+
Mon, 20 Nov 2023 18:24:23 GMT
|
135
|
+
|
136
|
+
_Version update only_
|
137
|
+
|
138
|
+
## 3.7.16
|
139
|
+
Mon, 16 Oct 2023 12:49:07 GMT
|
140
|
+
|
141
|
+
_Version update only_
|
142
|
+
|
104
143
|
## 3.7.15
|
105
144
|
Tue, 10 Oct 2023 19:58:35 GMT
|
106
145
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@itwin/build-tools",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.4.0-dev.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 = [];
|