@itwin/build-tools 4.8.0-dev.8 → 4.9.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 +36 -1
- package/ThirdPartyNotices.md +0 -11
- package/package.json +1 -1
- package/scripts/docs.js +2 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,41 @@
|
|
1
1
|
# Change Log - @itwin/build-tools
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Wed, 31 Jul 2024 13:39:32 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
## 4.7.8
|
6
|
+
Wed, 31 Jul 2024 13:38:04 GMT
|
7
|
+
|
8
|
+
_Version update only_
|
9
|
+
|
10
|
+
## 4.7.7
|
11
|
+
Fri, 19 Jul 2024 14:52:42 GMT
|
12
|
+
|
13
|
+
_Version update only_
|
14
|
+
|
15
|
+
## 4.7.6
|
16
|
+
Fri, 12 Jul 2024 14:42:55 GMT
|
17
|
+
|
18
|
+
_Version update only_
|
19
|
+
|
20
|
+
## 4.7.5
|
21
|
+
Thu, 11 Jul 2024 15:24:55 GMT
|
22
|
+
|
23
|
+
_Version update only_
|
24
|
+
|
25
|
+
## 4.7.4
|
26
|
+
Mon, 01 Jul 2024 14:06:23 GMT
|
27
|
+
|
28
|
+
_Version update only_
|
29
|
+
|
30
|
+
## 4.7.3
|
31
|
+
Thu, 27 Jun 2024 21:09:02 GMT
|
32
|
+
|
33
|
+
_Version update only_
|
34
|
+
|
35
|
+
## 4.7.2
|
36
|
+
Sat, 22 Jun 2024 01:09:54 GMT
|
37
|
+
|
38
|
+
_Version update only_
|
4
39
|
|
5
40
|
## 4.7.1
|
6
41
|
Thu, 13 Jun 2024 22:47:31 GMT
|
package/ThirdPartyNotices.md
CHANGED
@@ -3,17 +3,6 @@
|
|
3
3
|
|
4
4
|
The iTwin.js library potentially incorporates work from the following third-party code:
|
5
5
|
|
6
|
-
## [tslint-react-set-state-usage](https://github.com/sutrkiller/tslint-react-set-state-usage)
|
7
|
-
|
8
|
-
The MIT License (MIT)
|
9
|
-
Copyright (c) 2017 Tobias Kamenicky
|
10
|
-
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
16
|
-
|
17
6
|
## [recursive-readdir](https://github.com/jergason/recursive-readdir)
|
18
7
|
|
19
8
|
The MIT License (MIT)
|
package/package.json
CHANGED
package/scripts/docs.js
CHANGED
@@ -30,7 +30,8 @@ const baseUrlOptions = (argv.baseUrl === undefined) ? [] : ["--baseUrl", argv.ba
|
|
30
30
|
const includeOptions = (argv.includes === undefined) ? [] : ["--includes", argv.includes];
|
31
31
|
|
32
32
|
const testExclude = argv.testExcludeGlob ?? "**/*test*/**/*";
|
33
|
-
|
33
|
+
const excludeInternalFolders = "**/internal/**/*"
|
34
|
+
let excludeList = `**/node_modules/**/*,${testExclude},${excludeInternalFolders}`;
|
34
35
|
if (argv.excludes !== undefined)
|
35
36
|
excludeList += ",**/" + argv.excludes + "/**/*";
|
36
37
|
if (argv.excludeGlob !== undefined)
|