@ui5/builder 4.0.8 → 4.0.9
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 +9 -2
- package/lib/tasks/minify.js +5 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,16 @@
|
|
|
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/v4.0.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-builder/compare/v4.0.9...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v4.0.9"></a>
|
|
8
|
+
## [v4.0.9] - 2025-08-10
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- **minify:** Apply value of a resource's OmitFromBuildResult-tag to derived resources [`112d204`](https://github.com/SAP/ui5-builder/commit/112d204b230c973b6c209105e4e8a383fc1da35d)
|
|
11
|
+
|
|
6
12
|
|
|
7
13
|
<a name="v4.0.8"></a>
|
|
8
|
-
## [v4.0.8] - 2025-07-
|
|
14
|
+
## [v4.0.8] - 2025-07-15
|
|
9
15
|
### Bug Fixes
|
|
10
16
|
- **bundle/Builder:** Skip source map for empty or trivia-only files [`4763253`](https://github.com/SAP/ui5-builder/commit/4763253985ae869c541875d82d0609cb5ef28216)
|
|
11
17
|
|
|
@@ -967,6 +973,7 @@ to load the custom bundle file instead.
|
|
|
967
973
|
|
|
968
974
|
### Features
|
|
969
975
|
- Add ability to configure component preloads and custom bundles [`2241e5f`](https://github.com/SAP/ui5-builder/commit/2241e5ff98fd95f1f80cc74959655ae7a9c660e7)
|
|
976
|
+
[v4.0.9]: https://github.com/SAP/ui5-builder/compare/v4.0.8...v4.0.9
|
|
970
977
|
[v4.0.8]: https://github.com/SAP/ui5-builder/compare/v4.0.7...v4.0.8
|
|
971
978
|
[v4.0.7]: https://github.com/SAP/ui5-builder/compare/v4.0.6...v4.0.7
|
|
972
979
|
[v4.0.6]: https://github.com/SAP/ui5-builder/compare/v4.0.5...v4.0.6
|
package/lib/tasks/minify.js
CHANGED
|
@@ -44,6 +44,11 @@ export default async function({
|
|
|
44
44
|
resource, dbgResource, sourceMapResource, dbgSourceMapResource
|
|
45
45
|
}) => {
|
|
46
46
|
if (taskUtil) {
|
|
47
|
+
// Carry over OmitFromBuildResult from input resource to all derived resources
|
|
48
|
+
if (taskUtil.getTag(resource, taskUtil.STANDARD_TAGS.OmitFromBuildResult)) {
|
|
49
|
+
taskUtil.setTag(dbgResource, taskUtil.STANDARD_TAGS.OmitFromBuildResult);
|
|
50
|
+
taskUtil.setTag(sourceMapResource, taskUtil.STANDARD_TAGS.OmitFromBuildResult);
|
|
51
|
+
}
|
|
47
52
|
taskUtil.setTag(resource, taskUtil.STANDARD_TAGS.HasDebugVariant);
|
|
48
53
|
taskUtil.setTag(dbgResource, taskUtil.STANDARD_TAGS.IsDebugVariant);
|
|
49
54
|
taskUtil.setTag(sourceMapResource, taskUtil.STANDARD_TAGS.HasDebugVariant);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/builder",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.9",
|
|
4
4
|
"description": "UI5 Tooling - Builder",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -147,10 +147,10 @@
|
|
|
147
147
|
"cross-env": "^7.0.3",
|
|
148
148
|
"depcheck": "^1.4.7",
|
|
149
149
|
"docdash": "^2.0.2",
|
|
150
|
-
"eslint": "^9.
|
|
150
|
+
"eslint": "^9.33.0",
|
|
151
151
|
"eslint-config-google": "^0.14.0",
|
|
152
|
-
"eslint-plugin-ava": "^15.0
|
|
153
|
-
"eslint-plugin-jsdoc": "^
|
|
152
|
+
"eslint-plugin-ava": "^15.1.0",
|
|
153
|
+
"eslint-plugin-jsdoc": "^52.0.4",
|
|
154
154
|
"esmock": "^2.7.1",
|
|
155
155
|
"globals": "^16.3.0",
|
|
156
156
|
"line-column": "^1.0.2",
|