@ui5/task-adaptation 1.4.1 → 1.4.2
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,12 +2,12 @@
|
|
|
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-task-adaptation/compare/v1.4.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task-adaptation/compare/v1.4.2...HEAD).
|
|
6
6
|
|
|
7
|
-
<a name="v1.4.
|
|
8
|
-
## [v1.4.
|
|
7
|
+
<a name="v1.4.2"></a>
|
|
8
|
+
## [v1.4.2] - 2025-02-25
|
|
9
9
|
### Bug Fixes
|
|
10
|
-
-
|
|
10
|
+
- Update axios for CF [`e0e2220`](https://github.com/SAP/ui5-task-adaptation/commit/e0e2220d3a7fe429a06e5ca842858de2c559416f)
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
<a name="v1.4.0"></a>
|
|
@@ -106,7 +106,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task
|
|
|
106
106
|
<a name="v1.0.0"></a>
|
|
107
107
|
## v1.0.0 - 2020-12-09
|
|
108
108
|
|
|
109
|
-
[v1.4.
|
|
109
|
+
[v1.4.2]: https://github.com/SAP/ui5-task-adaptation/compare/v1.4.0...v1.4.2
|
|
110
110
|
[v1.4.0]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.3...v1.4.0
|
|
111
111
|
[v1.3.3]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.2...v1.3.3
|
|
112
112
|
[v1.3.2]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.1...v1.3.2
|
package/package.json
CHANGED
|
@@ -119,6 +119,7 @@ function transform(code: string, id: string) {
|
|
|
119
119
|
function replaceRequireAsync(code: string) {
|
|
120
120
|
const requireAsyncPattern = /requireAsync((.bind\(this, ")|(\("))+(?<url>[\/\w]*)"\)/mg;
|
|
121
121
|
let match, defineUrls = new Array<string>(), defineVars = new Array<string>(), matches = new Map();
|
|
122
|
+
// eslint-disable-next-line no-cond-assign
|
|
122
123
|
while (match = requireAsyncPattern.exec(code)) {
|
|
123
124
|
if (match.groups?.url) {
|
|
124
125
|
const varaibleName = match.groups.url.split("/").pop() + crypto.randomBytes(16).toString("hex");
|