@sap-ux/fiori-generator-shared 0.13.41 → 0.13.43
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.
|
@@ -107,7 +107,7 @@ class LogWrapper {
|
|
|
107
107
|
if (extLogger) {
|
|
108
108
|
LogWrapper._logLevel = vscode
|
|
109
109
|
? vscode.workspace.getConfiguration().get(exports.LOGGING_LEVEL_CONFIG_PROP)
|
|
110
|
-
: logLevel ?? 'info';
|
|
110
|
+
: (logLevel ?? 'info');
|
|
111
111
|
LogWrapper._vscodeLogger = extLogger.getChildLogger({ label: logName });
|
|
112
112
|
}
|
|
113
113
|
else {
|
|
@@ -78,7 +78,6 @@ function getVariantPreviewAppScript(addSearchParams, flpAppId) {
|
|
|
78
78
|
}
|
|
79
79
|
// Please keep the special characters in the below command
|
|
80
80
|
// as removing them may cause the browser to misinterpret the URI components without the necessary escaping and quotes.
|
|
81
|
-
// eslint-disable-next-line no-useless-escape
|
|
82
81
|
return `fiori run --open \"/preview.html${urlParam}${previewAppAnchor}\"`;
|
|
83
82
|
}
|
|
84
83
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/fiori-generator-shared",
|
|
3
3
|
"description": "Commonly used shared functionality and types to support the fiori generator.",
|
|
4
|
-
"version": "0.13.
|
|
4
|
+
"version": "0.13.43",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"mem-fs-editor": "9.4.0",
|
|
25
25
|
"os-name": "4.0.1",
|
|
26
26
|
"semver": "7.5.4",
|
|
27
|
-
"@sap-ux/btp-utils": "1.1.
|
|
28
|
-
"@sap-ux/project-access": "1.32.
|
|
29
|
-
"@sap-ux/telemetry": "0.6.
|
|
27
|
+
"@sap-ux/btp-utils": "1.1.6",
|
|
28
|
+
"@sap-ux/project-access": "1.32.16",
|
|
29
|
+
"@sap-ux/telemetry": "0.6.47"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/mem-fs-editor": "7.0.1",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"@types/semver": "7.5.2",
|
|
35
35
|
"@types/vscode": "1.73.1",
|
|
36
36
|
"@types/yeoman-environment": "2.10.11",
|
|
37
|
-
"@sap-ux/axios-extension": "1.24.
|
|
38
|
-
"@sap-ux/logger": "0.7.
|
|
39
|
-
"@sap-ux/store": "1.3.
|
|
37
|
+
"@sap-ux/axios-extension": "1.24.6",
|
|
38
|
+
"@sap-ux/logger": "0.7.2",
|
|
39
|
+
"@sap-ux/store": "1.3.5"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=20.x"
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"build": "tsc --build",
|
|
46
46
|
"clean": "rimraf --glob dist test/test-output coverage *.tsbuildinfo",
|
|
47
47
|
"watch": "tsc --watch",
|
|
48
|
-
"lint": "eslint
|
|
49
|
-
"lint:fix": "eslint
|
|
48
|
+
"lint": "eslint",
|
|
49
|
+
"lint:fix": "eslint --fix",
|
|
50
50
|
"test": "jest --ci --forceExit --detectOpenHandles --colors",
|
|
51
51
|
"test-u": "jest --ci --forceExit --detectOpenHandles --colors -u",
|
|
52
52
|
"link": "pnpm link --global",
|