@sap-ux/app-config-writer 0.6.25 → 0.6.28
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.
|
@@ -31,6 +31,10 @@ function isLowerThanMinimalVersion(packageJson, dependencyName, minVersionInfo,
|
|
|
31
31
|
// In case of 'latest' we know the minimal version is met
|
|
32
32
|
return false;
|
|
33
33
|
}
|
|
34
|
+
if ((0, semver_1.validRange)(versionInfo)) {
|
|
35
|
+
// In case of a valid range the minimal version must not be outside the range in high direction
|
|
36
|
+
return (0, semver_1.outside)(minVersionInfo, versionInfo, '>');
|
|
37
|
+
}
|
|
34
38
|
if ((0, semver_1.valid)(versionInfo)) {
|
|
35
39
|
// In case of a valid version we add a prefix to make it a range
|
|
36
40
|
versionInfo = `<=${versionInfo}`;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/app-config-writer",
|
|
3
3
|
"description": "Add or update configuration for SAP Fiori tools application",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.28",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"@sap-ux/axios-extension": "1.22.4",
|
|
31
31
|
"@sap-ux/btp-utils": "1.1.0",
|
|
32
32
|
"@sap-ux/logger": "0.7.0",
|
|
33
|
-
"@sap-ux/project-access": "1.30.
|
|
33
|
+
"@sap-ux/project-access": "1.30.10",
|
|
34
34
|
"@sap-ux/store": "1.1.2",
|
|
35
|
-
"@sap-ux/ui5-config": "0.29.
|
|
35
|
+
"@sap-ux/ui5-config": "0.29.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/ejs": "3.1.2",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@types/semver": "7.5.8",
|
|
43
43
|
"axios": "1.8.2",
|
|
44
44
|
"nock": "13.4.0",
|
|
45
|
-
"@sap-ux/preview-middleware": "0.20.
|
|
45
|
+
"@sap-ux/preview-middleware": "0.20.74"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=20.x"
|