@ui5/builder 2.11.8 → 2.11.10
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 +18 -1
- package/jsdoc.json +1 -1
- package/lib/processors/jsdoc/lib/transformApiJson.js +5 -4
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
-
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-builder/compare/v2.11.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-builder/compare/v2.11.10...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v2.11.10"></a>
|
|
8
|
+
## [v2.11.10] - 2023-04-12
|
|
9
|
+
### Dependency Updates
|
|
10
|
+
- Bump xml2js from 0.4.23 to 0.5.0 [`3058c45`](https://github.com/SAP/ui5-builder/commit/3058c459f9514a5ac3526f85c77f26aab311b03e)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
<a name="v2.11.9"></a>
|
|
14
|
+
## [v2.11.9] - 2022-11-30
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
- **transformApiJson:** Fix regression in UI5 Tooling scenario [`819c808`](https://github.com/SAP/ui5-builder/commit/819c808010963b84bfe33e109a7b2a5412096f78)
|
|
17
|
+
|
|
18
|
+
### Dependency Updates
|
|
19
|
+
- Bump less-openui5 from 0.11.2 to 0.11.3 [`1bbe5f5`](https://github.com/SAP/ui5-builder/commit/1bbe5f561fb35c646a27cbe4d03050101ff68d7c)
|
|
20
|
+
|
|
6
21
|
|
|
7
22
|
<a name="v2.11.8"></a>
|
|
8
23
|
## [v2.11.8] - 2022-10-28
|
|
@@ -670,6 +685,8 @@ to load the custom bundle file instead.
|
|
|
670
685
|
- Add ability to configure component preloads and custom bundles [`2241e5f`](https://github.com/SAP/ui5-builder/commit/2241e5ff98fd95f1f80cc74959655ae7a9c660e7)
|
|
671
686
|
|
|
672
687
|
|
|
688
|
+
[v2.11.10]: https://github.com/SAP/ui5-builder/compare/v2.11.9...v2.11.10
|
|
689
|
+
[v2.11.9]: https://github.com/SAP/ui5-builder/compare/v2.11.8...v2.11.9
|
|
673
690
|
[v2.11.8]: https://github.com/SAP/ui5-builder/compare/v2.11.7...v2.11.8
|
|
674
691
|
[v2.11.7]: https://github.com/SAP/ui5-builder/compare/v2.11.6...v2.11.7
|
|
675
692
|
[v2.11.6]: https://github.com/SAP/ui5-builder/compare/v2.11.5...v2.11.6
|
package/jsdoc.json
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"openGraph": {
|
|
30
30
|
"title": "UI5 Tooling - API Reference",
|
|
31
31
|
"type": "website",
|
|
32
|
-
"image": "https://sap.github.io/ui5-tooling/
|
|
32
|
+
"image": "https://sap.github.io/ui5-tooling/v2/images/UI5_logo_wide.png",
|
|
33
33
|
"site_name": "UI5 Tooling - API Reference",
|
|
34
34
|
"url": "https://sap.github.io/ui5-tooling/"
|
|
35
35
|
},
|
|
@@ -989,11 +989,12 @@ function transformer(sInputFile, sOutputFile, sLibraryFile, vDependencyAPIFiles,
|
|
|
989
989
|
const {sources} = options;
|
|
990
990
|
let {librarySrcDir, libraryTestDir} = options;
|
|
991
991
|
|
|
992
|
-
// Using path.join to normalize POSIX paths to Windows paths on Windows
|
|
993
|
-
librarySrcDir = path.join(librarySrcDir);
|
|
994
|
-
libraryTestDir = path.join(libraryTestDir);
|
|
995
|
-
|
|
996
992
|
if (Array.isArray(sources) && typeof librarySrcDir === "string" && typeof libraryTestDir === "string") {
|
|
993
|
+
|
|
994
|
+
// Using path.join to normalize POSIX paths to Windows paths on Windows
|
|
995
|
+
librarySrcDir = path.join(librarySrcDir);
|
|
996
|
+
libraryTestDir = path.join(libraryTestDir);
|
|
997
|
+
|
|
997
998
|
/**
|
|
998
999
|
* Calculate prefix to check
|
|
999
1000
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/builder",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.10",
|
|
4
4
|
"description": "UI5 Tooling - Builder",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -111,22 +111,22 @@
|
|
|
111
111
|
"escope": "^4.0.0",
|
|
112
112
|
"espree": "^6.2.1",
|
|
113
113
|
"globby": "^11.1.0",
|
|
114
|
-
"graceful-fs": "^4.2.
|
|
114
|
+
"graceful-fs": "^4.2.11",
|
|
115
115
|
"jsdoc": "^3.6.11",
|
|
116
|
-
"less-openui5": "^0.11.
|
|
116
|
+
"less-openui5": "^0.11.6",
|
|
117
117
|
"make-dir": "^3.1.0",
|
|
118
118
|
"pretty-data": "^0.40.0",
|
|
119
119
|
"pretty-hrtime": "^1.0.3",
|
|
120
120
|
"replacestream": "^4.0.3",
|
|
121
121
|
"rimraf": "^3.0.2",
|
|
122
|
-
"semver": "^7.
|
|
123
|
-
"terser": "^5.
|
|
124
|
-
"xml2js": "^0.
|
|
122
|
+
"semver": "^7.4.0",
|
|
123
|
+
"terser": "^5.16.9",
|
|
124
|
+
"xml2js": "^0.5.0",
|
|
125
125
|
"yazl": "^2.5.1"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
128
128
|
"ava": "^3.15.0",
|
|
129
|
-
"chai": "^4.3.
|
|
129
|
+
"chai": "^4.3.7",
|
|
130
130
|
"chai-fs": "^2.0.0",
|
|
131
131
|
"chokidar-cli": "^3.0.0",
|
|
132
132
|
"cross-env": "^7.0.3",
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
"mock-require": "^3.0.3",
|
|
140
140
|
"nyc": "^15.1.0",
|
|
141
141
|
"open-cli": "^6.0.1",
|
|
142
|
-
"recursive-readdir": "^2.
|
|
142
|
+
"recursive-readdir": "^2.2.3",
|
|
143
143
|
"sinon": "^11.1.2",
|
|
144
144
|
"tap-nyan": "^1.1.0",
|
|
145
145
|
"tap-xunit": "^2.4.1"
|