@ui5/builder 3.0.2 → 3.0.4

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 CHANGED
@@ -2,7 +2,19 @@
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/v3.0.2...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-builder/compare/v3.0.4...HEAD).
6
+
7
+ <a name="v3.0.4"></a>
8
+ ## [v3.0.4] - 2023-05-23
9
+ ### Bug Fixes
10
+ - **lbt/Resolver:** ensure stable module order in generated bundleInfo [`482b8a0`](https://github.com/SAP/ui5-builder/commit/482b8a011d9f0e3fc24d0485be7caf1509195c82)
11
+
12
+
13
+ <a name="v3.0.3"></a>
14
+ ## [v3.0.3] - 2023-04-21
15
+ ### Dependency Updates
16
+ - Bump rimraf from 4.4.1 to 5.0.0 ([#897](https://github.com/SAP/ui5-builder/issues/897)) [`7b5e442`](https://github.com/SAP/ui5-builder/commit/7b5e442be80ff2e070c249a2c3c3cbe11a34b956)
17
+
6
18
 
7
19
  <a name="v3.0.2"></a>
8
20
  ## [v3.0.2] - 2023-04-12
@@ -779,6 +791,8 @@ to load the custom bundle file instead.
779
791
 
780
792
  ### Features
781
793
  - Add ability to configure component preloads and custom bundles [`2241e5f`](https://github.com/SAP/ui5-builder/commit/2241e5ff98fd95f1f80cc74959655ae7a9c660e7)
794
+ [v3.0.4]: https://github.com/SAP/ui5-builder/compare/v3.0.3...v3.0.4
795
+ [v3.0.3]: https://github.com/SAP/ui5-builder/compare/v3.0.2...v3.0.3
782
796
  [v3.0.2]: https://github.com/SAP/ui5-builder/compare/v3.0.1...v3.0.2
783
797
  [v3.0.1]: https://github.com/SAP/ui5-builder/compare/v3.0.0...v3.0.1
784
798
  [v3.0.0]: https://github.com/SAP/ui5-builder/compare/v2.11.2...v3.0.0
@@ -295,7 +295,9 @@ class BundleResolver {
295
295
  return modules;
296
296
  });
297
297
  }
298
-
298
+ if ( section.mode === SectionType.BundleInfo ) {
299
+ modules.sort();
300
+ }
299
301
  log.silly(` Resolved modules: ${modules}`);
300
302
  return modules;
301
303
  }).then( function(modules) {
@@ -3,7 +3,7 @@ const log = getLogger("builder:tasks:jsdoc:generateJsdoc");
3
3
  import path from "node:path";
4
4
  import os from "node:os";
5
5
  import fs from "graceful-fs";
6
- import rimraf from "rimraf";
6
+ import {rimraf} from "rimraf";
7
7
  import {promisify} from "node:util";
8
8
  const mkdtemp = promisify(fs.mkdtemp);
9
9
  const mkdir = promisify(fs.mkdir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/builder",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
4
4
  "description": "UI5 Tooling - Builder",
5
5
  "author": {
6
6
  "name": "SAP SE",
@@ -118,25 +118,25 @@
118
118
  },
119
119
  "dependencies": {
120
120
  "@jridgewell/sourcemap-codec": "^1.4.15",
121
- "@ui5/fs": "^3.0.2",
121
+ "@ui5/fs": "^3.0.4",
122
122
  "@ui5/logger": "^3.0.0",
123
123
  "cheerio": "1.0.0-rc.12",
124
124
  "escape-unicode": "^0.2.0",
125
125
  "escope": "^4.0.0",
126
- "espree": "^9.5.1",
126
+ "espree": "^9.5.2",
127
127
  "graceful-fs": "^4.2.11",
128
128
  "jsdoc": "^4.0.2",
129
129
  "less-openui5": "^0.11.6",
130
130
  "pretty-data": "^0.40.0",
131
- "rimraf": "^4.4.1",
132
- "semver": "^7.4.0",
133
- "terser": "^5.16.9",
131
+ "rimraf": "^5.0.1",
132
+ "semver": "^7.5.1",
133
+ "terser": "^5.17.4",
134
134
  "workerpool": "^6.4.0",
135
135
  "xml2js": "^0.5.0"
136
136
  },
137
137
  "devDependencies": {
138
138
  "@istanbuljs/esm-loader-hook": "^0.2.0",
139
- "@ui5/project": "^3.1.0",
139
+ "@ui5/project": "^3.3.0",
140
140
  "ava": "^5.2.0",
141
141
  "chai": "^4.3.7",
142
142
  "chai-fs": "^2.0.0",
@@ -144,15 +144,15 @@
144
144
  "cross-env": "^7.0.3",
145
145
  "depcheck": "^1.4.3",
146
146
  "docdash": "^2.0.1",
147
- "eslint": "^8.38.0",
147
+ "eslint": "^8.41.0",
148
148
  "eslint-config-google": "^0.14.0",
149
149
  "eslint-plugin-ava": "^14.0.0",
150
- "eslint-plugin-jsdoc": "^40.3.0",
151
- "esmock": "^2.2.1",
150
+ "eslint-plugin-jsdoc": "^44.2.4",
151
+ "esmock": "^2.2.3",
152
152
  "nyc": "^15.1.0",
153
153
  "open-cli": "^7.2.0",
154
154
  "recursive-readdir": "^2.2.3",
155
- "sinon": "^15.0.3",
155
+ "sinon": "^15.1.0",
156
156
  "tap-xunit": "^2.4.1"
157
157
  }
158
158
  }