@sap/ux-ui5-tooling 1.6.6 → 1.7.1
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 +15 -0
- package/README.md +3 -1
- package/dist/cli/index.js +6878 -6213
- package/dist/middlewares/fiori-tools-appreload.js +175 -271
- package/dist/middlewares/fiori-tools-preview.js +2720 -706
- package/dist/middlewares/fiori-tools-proxy.js +102001 -108052
- package/dist/middlewares/fiori-tools-servestatic.js +177 -275
- package/dist/tasks/cf-deploy/index.js +956 -467
- package/dist/tasks/deploy/index.js +1877 -1214
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +49 -49
- package/dist/templates/control-property-editor/ui5-adaptation.js +1 -1
- package/dist/templates/variants-management/preview.html +1 -1
- package/package.json +15 -15
|
@@ -25,9 +25,9 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
25
25
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
26
26
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
27
27
|
|
|
28
|
-
// ../../node_modules/
|
|
28
|
+
// ../../node_modules/@ui5/logger/node_modules/are-we-there-yet/tracker-base.js
|
|
29
29
|
var require_tracker_base = __commonJS({
|
|
30
|
-
"../../node_modules/
|
|
30
|
+
"../../node_modules/@ui5/logger/node_modules/are-we-there-yet/tracker-base.js"(exports2, module2) {
|
|
31
31
|
"use strict";
|
|
32
32
|
var EventEmitter2 = require("events").EventEmitter;
|
|
33
33
|
var util = require("util");
|
|
@@ -41,9 +41,9 @@ var require_tracker_base = __commonJS({
|
|
|
41
41
|
}
|
|
42
42
|
});
|
|
43
43
|
|
|
44
|
-
// ../../node_modules/
|
|
44
|
+
// ../../node_modules/@ui5/logger/node_modules/are-we-there-yet/tracker.js
|
|
45
45
|
var require_tracker = __commonJS({
|
|
46
|
-
"../../node_modules/
|
|
46
|
+
"../../node_modules/@ui5/logger/node_modules/are-we-there-yet/tracker.js"(exports2, module2) {
|
|
47
47
|
"use strict";
|
|
48
48
|
var util = require("util");
|
|
49
49
|
var TrackerBase = require_tracker_base();
|
|
@@ -1700,7 +1700,7 @@ var require_stream_readable = __commonJS({
|
|
|
1700
1700
|
debug("ondata");
|
|
1701
1701
|
increasedAwaitDrain = false;
|
|
1702
1702
|
var ret2 = dest.write(chunk);
|
|
1703
|
-
if (
|
|
1703
|
+
if (false === ret2 && !increasedAwaitDrain) {
|
|
1704
1704
|
if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {
|
|
1705
1705
|
debug("false write response, pause", src._readableState.awaitDrain);
|
|
1706
1706
|
src._readableState.awaitDrain++;
|
|
@@ -1842,7 +1842,7 @@ var require_stream_readable = __commonJS({
|
|
|
1842
1842
|
}
|
|
1843
1843
|
Readable.prototype.pause = function() {
|
|
1844
1844
|
debug("call pause flowing=%j", this._readableState.flowing);
|
|
1845
|
-
if (this._readableState.flowing
|
|
1845
|
+
if (false !== this._readableState.flowing) {
|
|
1846
1846
|
debug("pause");
|
|
1847
1847
|
this._readableState.flowing = false;
|
|
1848
1848
|
this.emit("pause");
|
|
@@ -2228,7 +2228,7 @@ var require_delegates = __commonJS({
|
|
|
2228
2228
|
var target = this.target;
|
|
2229
2229
|
this.fluents.push(name);
|
|
2230
2230
|
proto[name] = function(val) {
|
|
2231
|
-
if (typeof val
|
|
2231
|
+
if ("undefined" != typeof val) {
|
|
2232
2232
|
this[target][name] = val;
|
|
2233
2233
|
return this;
|
|
2234
2234
|
} else {
|
|
@@ -2240,9 +2240,9 @@ var require_delegates = __commonJS({
|
|
|
2240
2240
|
}
|
|
2241
2241
|
});
|
|
2242
2242
|
|
|
2243
|
-
// ../../node_modules/
|
|
2243
|
+
// ../../node_modules/@ui5/logger/node_modules/are-we-there-yet/tracker-stream.js
|
|
2244
2244
|
var require_tracker_stream = __commonJS({
|
|
2245
|
-
"../../node_modules/
|
|
2245
|
+
"../../node_modules/@ui5/logger/node_modules/are-we-there-yet/tracker-stream.js"(exports2, module2) {
|
|
2246
2246
|
"use strict";
|
|
2247
2247
|
var util = require("util");
|
|
2248
2248
|
var stream = require_readable();
|
|
@@ -2274,9 +2274,9 @@ var require_tracker_stream = __commonJS({
|
|
|
2274
2274
|
}
|
|
2275
2275
|
});
|
|
2276
2276
|
|
|
2277
|
-
// ../../node_modules/
|
|
2277
|
+
// ../../node_modules/@ui5/logger/node_modules/are-we-there-yet/tracker-group.js
|
|
2278
2278
|
var require_tracker_group = __commonJS({
|
|
2279
|
-
"../../node_modules/
|
|
2279
|
+
"../../node_modules/@ui5/logger/node_modules/are-we-there-yet/tracker-group.js"(exports2, module2) {
|
|
2280
2280
|
"use strict";
|
|
2281
2281
|
var util = require("util");
|
|
2282
2282
|
var TrackerBase = require_tracker_base();
|
|
@@ -2378,9 +2378,9 @@ var require_tracker_group = __commonJS({
|
|
|
2378
2378
|
}
|
|
2379
2379
|
});
|
|
2380
2380
|
|
|
2381
|
-
// ../../node_modules/
|
|
2381
|
+
// ../../node_modules/@ui5/logger/node_modules/are-we-there-yet/index.js
|
|
2382
2382
|
var require_are_we_there_yet = __commonJS({
|
|
2383
|
-
"../../node_modules/
|
|
2383
|
+
"../../node_modules/@ui5/logger/node_modules/are-we-there-yet/index.js"(exports2) {
|
|
2384
2384
|
"use strict";
|
|
2385
2385
|
exports2.TrackerGroup = require_tracker_group();
|
|
2386
2386
|
exports2.Tracker = require_tracker();
|
|
@@ -2510,18 +2510,18 @@ var require_ansi_regex = __commonJS({
|
|
|
2510
2510
|
}
|
|
2511
2511
|
});
|
|
2512
2512
|
|
|
2513
|
-
// ../../node_modules/
|
|
2513
|
+
// ../../node_modules/@ui5/logger/node_modules/wide-align/node_modules/strip-ansi/index.js
|
|
2514
2514
|
var require_strip_ansi = __commonJS({
|
|
2515
|
-
"../../node_modules/
|
|
2515
|
+
"../../node_modules/@ui5/logger/node_modules/wide-align/node_modules/strip-ansi/index.js"(exports2, module2) {
|
|
2516
2516
|
"use strict";
|
|
2517
2517
|
var ansiRegex = require_ansi_regex();
|
|
2518
2518
|
module2.exports = (input) => typeof input === "string" ? input.replace(ansiRegex(), "") : input;
|
|
2519
2519
|
}
|
|
2520
2520
|
});
|
|
2521
2521
|
|
|
2522
|
-
// ../../node_modules/
|
|
2522
|
+
// ../../node_modules/@ui5/logger/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.js
|
|
2523
2523
|
var require_is_fullwidth_code_point = __commonJS({
|
|
2524
|
-
"../../node_modules/
|
|
2524
|
+
"../../node_modules/@ui5/logger/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.js"(exports2, module2) {
|
|
2525
2525
|
"use strict";
|
|
2526
2526
|
module2.exports = (x) => {
|
|
2527
2527
|
if (Number.isNaN(x)) {
|
|
@@ -2535,9 +2535,9 @@ var require_is_fullwidth_code_point = __commonJS({
|
|
|
2535
2535
|
}
|
|
2536
2536
|
});
|
|
2537
2537
|
|
|
2538
|
-
// ../../node_modules/
|
|
2538
|
+
// ../../node_modules/@ui5/logger/node_modules/wide-align/node_modules/string-width/index.js
|
|
2539
2539
|
var require_string_width = __commonJS({
|
|
2540
|
-
"../../node_modules/
|
|
2540
|
+
"../../node_modules/@ui5/logger/node_modules/wide-align/node_modules/string-width/index.js"(exports2, module2) {
|
|
2541
2541
|
"use strict";
|
|
2542
2542
|
var stripAnsi = require_strip_ansi();
|
|
2543
2543
|
var isFullwidthCodePoint = require_is_fullwidth_code_point();
|
|
@@ -2565,9 +2565,9 @@ var require_string_width = __commonJS({
|
|
|
2565
2565
|
}
|
|
2566
2566
|
});
|
|
2567
2567
|
|
|
2568
|
-
// ../../node_modules/
|
|
2568
|
+
// ../../node_modules/@ui5/logger/node_modules/wide-align/align.js
|
|
2569
2569
|
var require_align = __commonJS({
|
|
2570
|
-
"../../node_modules/
|
|
2570
|
+
"../../node_modules/@ui5/logger/node_modules/wide-align/align.js"(exports2) {
|
|
2571
2571
|
"use strict";
|
|
2572
2572
|
var stringWidth = require_string_width();
|
|
2573
2573
|
exports2.center = alignCenter;
|
|
@@ -2823,9 +2823,9 @@ var require_object_assign = __commonJS({
|
|
|
2823
2823
|
}
|
|
2824
2824
|
});
|
|
2825
2825
|
|
|
2826
|
-
// ../../node_modules/
|
|
2826
|
+
// ../../node_modules/@ui5/logger/node_modules/strip-ansi/index.js
|
|
2827
2827
|
var require_strip_ansi2 = __commonJS({
|
|
2828
|
-
"../../node_modules/
|
|
2828
|
+
"../../node_modules/@ui5/logger/node_modules/strip-ansi/index.js"(exports2, module2) {
|
|
2829
2829
|
"use strict";
|
|
2830
2830
|
var ansiRegex = require_ansi_regex()();
|
|
2831
2831
|
module2.exports = function(str) {
|
|
@@ -2873,16 +2873,16 @@ var require_number_is_nan = __commonJS({
|
|
|
2873
2873
|
}
|
|
2874
2874
|
});
|
|
2875
2875
|
|
|
2876
|
-
// ../../node_modules/
|
|
2876
|
+
// ../../node_modules/@ui5/logger/node_modules/is-fullwidth-code-point/index.js
|
|
2877
2877
|
var require_is_fullwidth_code_point2 = __commonJS({
|
|
2878
|
-
"../../node_modules/
|
|
2878
|
+
"../../node_modules/@ui5/logger/node_modules/is-fullwidth-code-point/index.js"(exports2, module2) {
|
|
2879
2879
|
"use strict";
|
|
2880
2880
|
var numberIsNan = require_number_is_nan();
|
|
2881
2881
|
module2.exports = function(x) {
|
|
2882
2882
|
if (numberIsNan(x)) {
|
|
2883
2883
|
return false;
|
|
2884
2884
|
}
|
|
2885
|
-
if (x >= 4352 && (x <= 4447 ||
|
|
2885
|
+
if (x >= 4352 && (x <= 4447 || 9001 === x || 9002 === x || 11904 <= x && x <= 12871 && x !== 12351 || 12880 <= x && x <= 19903 || 19968 <= x && x <= 42182 || 43360 <= x && x <= 43388 || 44032 <= x && x <= 55203 || 63744 <= x && x <= 64255 || 65040 <= x && x <= 65049 || 65072 <= x && x <= 65131 || 65281 <= x && x <= 65376 || 65504 <= x && x <= 65510 || 110592 <= x && x <= 110593 || 127488 <= x && x <= 127569 || 131072 <= x && x <= 262141)) {
|
|
2886
2886
|
return true;
|
|
2887
2887
|
}
|
|
2888
2888
|
return false;
|
|
@@ -2890,9 +2890,9 @@ var require_is_fullwidth_code_point2 = __commonJS({
|
|
|
2890
2890
|
}
|
|
2891
2891
|
});
|
|
2892
2892
|
|
|
2893
|
-
// ../../node_modules/
|
|
2893
|
+
// ../../node_modules/@ui5/logger/node_modules/string-width/index.js
|
|
2894
2894
|
var require_string_width2 = __commonJS({
|
|
2895
|
-
"../../node_modules/
|
|
2895
|
+
"../../node_modules/@ui5/logger/node_modules/string-width/index.js"(exports2, module2) {
|
|
2896
2896
|
"use strict";
|
|
2897
2897
|
var stripAnsi = require_strip_ansi2();
|
|
2898
2898
|
var codePointAt = require_code_point_at();
|
|
@@ -2922,9 +2922,9 @@ var require_string_width2 = __commonJS({
|
|
|
2922
2922
|
}
|
|
2923
2923
|
});
|
|
2924
2924
|
|
|
2925
|
-
// ../../node_modules/gauge/wide-truncate.js
|
|
2925
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/wide-truncate.js
|
|
2926
2926
|
var require_wide_truncate = __commonJS({
|
|
2927
|
-
"../../node_modules/gauge/wide-truncate.js"(exports2, module2) {
|
|
2927
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/wide-truncate.js"(exports2, module2) {
|
|
2928
2928
|
"use strict";
|
|
2929
2929
|
var stringWidth = require_string_width2();
|
|
2930
2930
|
var stripAnsi = require_strip_ansi2();
|
|
@@ -2947,9 +2947,9 @@ var require_wide_truncate = __commonJS({
|
|
|
2947
2947
|
}
|
|
2948
2948
|
});
|
|
2949
2949
|
|
|
2950
|
-
// ../../node_modules/gauge/error.js
|
|
2950
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/error.js
|
|
2951
2951
|
var require_error = __commonJS({
|
|
2952
|
-
"../../node_modules/gauge/error.js"(exports2) {
|
|
2952
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/error.js"(exports2) {
|
|
2953
2953
|
"use strict";
|
|
2954
2954
|
var util = require("util");
|
|
2955
2955
|
var User = exports2.User = function User2(msg) {
|
|
@@ -2974,9 +2974,9 @@ var require_error = __commonJS({
|
|
|
2974
2974
|
}
|
|
2975
2975
|
});
|
|
2976
2976
|
|
|
2977
|
-
// ../../node_modules/gauge/template-item.js
|
|
2977
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/template-item.js
|
|
2978
2978
|
var require_template_item = __commonJS({
|
|
2979
|
-
"../../node_modules/gauge/template-item.js"(exports2, module2) {
|
|
2979
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/template-item.js"(exports2, module2) {
|
|
2980
2980
|
"use strict";
|
|
2981
2981
|
var stringWidth = require_string_width2();
|
|
2982
2982
|
module2.exports = TemplateItem;
|
|
@@ -3047,9 +3047,9 @@ var require_template_item = __commonJS({
|
|
|
3047
3047
|
}
|
|
3048
3048
|
});
|
|
3049
3049
|
|
|
3050
|
-
// ../../node_modules/gauge/render-template.js
|
|
3050
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/render-template.js
|
|
3051
3051
|
var require_render_template = __commonJS({
|
|
3052
|
-
"../../node_modules/gauge/render-template.js"(exports2, module2) {
|
|
3052
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/render-template.js"(exports2, module2) {
|
|
3053
3053
|
"use strict";
|
|
3054
3054
|
var align = require_align();
|
|
3055
3055
|
var validate = require_aproba();
|
|
@@ -3237,9 +3237,9 @@ var require_render_template = __commonJS({
|
|
|
3237
3237
|
}
|
|
3238
3238
|
});
|
|
3239
3239
|
|
|
3240
|
-
// ../../node_modules/gauge/plumbing.js
|
|
3240
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/plumbing.js
|
|
3241
3241
|
var require_plumbing = __commonJS({
|
|
3242
|
-
"../../node_modules/gauge/plumbing.js"(exports2, module2) {
|
|
3242
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/plumbing.js"(exports2, module2) {
|
|
3243
3243
|
"use strict";
|
|
3244
3244
|
var consoleControl = require_console_control_strings();
|
|
3245
3245
|
var renderTemplate = require_render_template();
|
|
@@ -3297,9 +3297,9 @@ var require_has_unicode = __commonJS({
|
|
|
3297
3297
|
}
|
|
3298
3298
|
});
|
|
3299
3299
|
|
|
3300
|
-
// ../../node_modules/gauge/has-color.js
|
|
3300
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/has-color.js
|
|
3301
3301
|
var require_has_color = __commonJS({
|
|
3302
|
-
"../../node_modules/gauge/has-color.js"(exports2, module2) {
|
|
3302
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/has-color.js"(exports2, module2) {
|
|
3303
3303
|
"use strict";
|
|
3304
3304
|
module2.exports = isWin32() || isColorTerm();
|
|
3305
3305
|
function isWin32() {
|
|
@@ -3455,9 +3455,9 @@ var require_signal_exit = __commonJS({
|
|
|
3455
3455
|
}
|
|
3456
3456
|
});
|
|
3457
3457
|
|
|
3458
|
-
// ../../node_modules/gauge/spin.js
|
|
3458
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/spin.js
|
|
3459
3459
|
var require_spin = __commonJS({
|
|
3460
|
-
"../../node_modules/gauge/spin.js"(exports2, module2) {
|
|
3460
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/spin.js"(exports2, module2) {
|
|
3461
3461
|
"use strict";
|
|
3462
3462
|
module2.exports = function spin(spinstr, spun) {
|
|
3463
3463
|
return spinstr[spun % spinstr.length];
|
|
@@ -3465,9 +3465,9 @@ var require_spin = __commonJS({
|
|
|
3465
3465
|
}
|
|
3466
3466
|
});
|
|
3467
3467
|
|
|
3468
|
-
// ../../node_modules/gauge/progress-bar.js
|
|
3468
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/progress-bar.js
|
|
3469
3469
|
var require_progress_bar = __commonJS({
|
|
3470
|
-
"../../node_modules/gauge/progress-bar.js"(exports2, module2) {
|
|
3470
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/progress-bar.js"(exports2, module2) {
|
|
3471
3471
|
"use strict";
|
|
3472
3472
|
var validate = require_aproba();
|
|
3473
3473
|
var renderTemplate = require_render_template();
|
|
@@ -3504,9 +3504,9 @@ var require_progress_bar = __commonJS({
|
|
|
3504
3504
|
}
|
|
3505
3505
|
});
|
|
3506
3506
|
|
|
3507
|
-
// ../../node_modules/gauge/base-theme.js
|
|
3507
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/base-theme.js
|
|
3508
3508
|
var require_base_theme = __commonJS({
|
|
3509
|
-
"../../node_modules/gauge/base-theme.js"(exports2, module2) {
|
|
3509
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/base-theme.js"(exports2, module2) {
|
|
3510
3510
|
"use strict";
|
|
3511
3511
|
var spin = require_spin();
|
|
3512
3512
|
var progressBar = require_progress_bar();
|
|
@@ -3525,9 +3525,9 @@ var require_base_theme = __commonJS({
|
|
|
3525
3525
|
}
|
|
3526
3526
|
});
|
|
3527
3527
|
|
|
3528
|
-
// ../../node_modules/gauge/theme-set.js
|
|
3528
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/theme-set.js
|
|
3529
3529
|
var require_theme_set = __commonJS({
|
|
3530
|
-
"../../node_modules/gauge/theme-set.js"(exports2, module2) {
|
|
3530
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/theme-set.js"(exports2, module2) {
|
|
3531
3531
|
"use strict";
|
|
3532
3532
|
var objectAssign = require_object_assign();
|
|
3533
3533
|
module2.exports = function() {
|
|
@@ -3632,9 +3632,9 @@ var require_theme_set = __commonJS({
|
|
|
3632
3632
|
}
|
|
3633
3633
|
});
|
|
3634
3634
|
|
|
3635
|
-
// ../../node_modules/gauge/themes.js
|
|
3635
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/themes.js
|
|
3636
3636
|
var require_themes = __commonJS({
|
|
3637
|
-
"../../node_modules/gauge/themes.js"(exports2, module2) {
|
|
3637
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/themes.js"(exports2, module2) {
|
|
3638
3638
|
"use strict";
|
|
3639
3639
|
var consoleControl = require_console_control_strings();
|
|
3640
3640
|
var ThemeSet = require_theme_set();
|
|
@@ -3686,25 +3686,25 @@ var require_themes = __commonJS({
|
|
|
3686
3686
|
}
|
|
3687
3687
|
});
|
|
3688
3688
|
|
|
3689
|
-
// ../../node_modules/gauge/set-interval.js
|
|
3689
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/set-interval.js
|
|
3690
3690
|
var require_set_interval = __commonJS({
|
|
3691
|
-
"../../node_modules/gauge/set-interval.js"(exports2, module2) {
|
|
3691
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/set-interval.js"(exports2, module2) {
|
|
3692
3692
|
"use strict";
|
|
3693
3693
|
module2.exports = setInterval;
|
|
3694
3694
|
}
|
|
3695
3695
|
});
|
|
3696
3696
|
|
|
3697
|
-
// ../../node_modules/gauge/process.js
|
|
3697
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/process.js
|
|
3698
3698
|
var require_process = __commonJS({
|
|
3699
|
-
"../../node_modules/gauge/process.js"(exports2, module2) {
|
|
3699
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/process.js"(exports2, module2) {
|
|
3700
3700
|
"use strict";
|
|
3701
3701
|
module2.exports = process;
|
|
3702
3702
|
}
|
|
3703
3703
|
});
|
|
3704
3704
|
|
|
3705
|
-
// ../../node_modules/gauge/set-immediate.js
|
|
3705
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/set-immediate.js
|
|
3706
3706
|
var require_set_immediate = __commonJS({
|
|
3707
|
-
"../../node_modules/gauge/set-immediate.js"(exports2, module2) {
|
|
3707
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/set-immediate.js"(exports2, module2) {
|
|
3708
3708
|
"use strict";
|
|
3709
3709
|
var process2 = require_process();
|
|
3710
3710
|
try {
|
|
@@ -3715,9 +3715,9 @@ var require_set_immediate = __commonJS({
|
|
|
3715
3715
|
}
|
|
3716
3716
|
});
|
|
3717
3717
|
|
|
3718
|
-
// ../../node_modules/gauge/index.js
|
|
3718
|
+
// ../../node_modules/@ui5/logger/node_modules/gauge/index.js
|
|
3719
3719
|
var require_gauge = __commonJS({
|
|
3720
|
-
"../../node_modules/gauge/index.js"(exports2, module2) {
|
|
3720
|
+
"../../node_modules/@ui5/logger/node_modules/gauge/index.js"(exports2, module2) {
|
|
3721
3721
|
"use strict";
|
|
3722
3722
|
var Plumbing = require_plumbing();
|
|
3723
3723
|
var hasUnicode = require_has_unicode();
|
|
@@ -3962,9 +3962,9 @@ var require_set_blocking = __commonJS({
|
|
|
3962
3962
|
}
|
|
3963
3963
|
});
|
|
3964
3964
|
|
|
3965
|
-
// ../../node_modules/npmlog/log.js
|
|
3965
|
+
// ../../node_modules/@ui5/logger/node_modules/npmlog/log.js
|
|
3966
3966
|
var require_log = __commonJS({
|
|
3967
|
-
"../../node_modules/npmlog/log.js"(exports2, module2) {
|
|
3967
|
+
"../../node_modules/@ui5/logger/node_modules/npmlog/log.js"(exports2, module2) {
|
|
3968
3968
|
"use strict";
|
|
3969
3969
|
var Progress = require_are_we_there_yet();
|
|
3970
3970
|
var Gauge = require_gauge();
|
|
@@ -8949,7 +8949,7 @@ var require_debuggability = __commonJS({
|
|
|
8949
8949
|
var ret2 = [];
|
|
8950
8950
|
for (var i = 0; i < stack.length; ++i) {
|
|
8951
8951
|
var line = stack[i];
|
|
8952
|
-
var isTraceLine =
|
|
8952
|
+
var isTraceLine = " (No stack trace)" === line || stackFramePattern.test(line);
|
|
8953
8953
|
var isInternalFrame = isTraceLine && shouldIgnore(line);
|
|
8954
8954
|
if (isTraceLine && !isInternalFrame) {
|
|
8955
8955
|
if (indentStackFrames && line.charAt(0) !== " ") {
|
|
@@ -8964,7 +8964,7 @@ var require_debuggability = __commonJS({
|
|
|
8964
8964
|
var stack = error2.stack.replace(/\s+$/g, "").split("\n");
|
|
8965
8965
|
for (var i = 0; i < stack.length; ++i) {
|
|
8966
8966
|
var line = stack[i];
|
|
8967
|
-
if (
|
|
8967
|
+
if (" (No stack trace)" === line || stackFramePattern.test(line)) {
|
|
8968
8968
|
break;
|
|
8969
8969
|
}
|
|
8970
8970
|
}
|
|
@@ -23293,7 +23293,7 @@ var require_aws_sign2 = __commonJS({
|
|
|
23293
23293
|
var buf = [], fields = Object.keys(headers);
|
|
23294
23294
|
for (var i = 0, len = fields.length; i < len; ++i) {
|
|
23295
23295
|
var field = fields[i], val = headers[field], field = field.toLowerCase();
|
|
23296
|
-
if (field.indexOf("x-amz")
|
|
23296
|
+
if (0 !== field.indexOf("x-amz"))
|
|
23297
23297
|
continue;
|
|
23298
23298
|
buf.push(field + ":" + val);
|
|
23299
23299
|
}
|
|
@@ -23305,7 +23305,7 @@ var require_aws_sign2 = __commonJS({
|
|
|
23305
23305
|
Object.keys(url.query).forEach(function(key) {
|
|
23306
23306
|
if (!~keys.indexOf(key))
|
|
23307
23307
|
return;
|
|
23308
|
-
var val = url.query[key]
|
|
23308
|
+
var val = "" == url.query[key] ? "" : "=" + encodeURIComponent(url.query[key]);
|
|
23309
23309
|
buf.push(key + val);
|
|
23310
23310
|
});
|
|
23311
23311
|
return path + (buf.length ? "?" + buf.sort().join("&") : "");
|
|
@@ -24630,9 +24630,9 @@ var require_jsbn = __commonJS({
|
|
|
24630
24630
|
var j_lm = (canary & 16777215) == 15715070;
|
|
24631
24631
|
function BigInteger(a, b, c) {
|
|
24632
24632
|
if (a != null)
|
|
24633
|
-
if (typeof a
|
|
24633
|
+
if ("number" == typeof a)
|
|
24634
24634
|
this.fromNumber(a, b, c);
|
|
24635
|
-
else if (b == null && typeof a
|
|
24635
|
+
else if (b == null && "string" != typeof a)
|
|
24636
24636
|
this.fromString(a, 256);
|
|
24637
24637
|
else
|
|
24638
24638
|
this.fromString(a, b);
|
|
@@ -25280,7 +25280,7 @@ var require_jsbn = __commonJS({
|
|
|
25280
25280
|
BigInteger.ZERO.subTo(this, this);
|
|
25281
25281
|
}
|
|
25282
25282
|
function bnpFromNumber(a, b, c) {
|
|
25283
|
-
if (typeof b
|
|
25283
|
+
if ("number" == typeof b) {
|
|
25284
25284
|
if (a < 2)
|
|
25285
25285
|
this.fromInt(1);
|
|
25286
25286
|
else {
|
|
@@ -57154,6 +57154,7 @@ var require_constants = __commonJS({
|
|
|
57154
57154
|
DirName3["Csv"] = "csv";
|
|
57155
57155
|
DirName3["Data"] = "data";
|
|
57156
57156
|
DirName3["Mockdata"] = "mockdata";
|
|
57157
|
+
DirName3["Dist"] = "dist";
|
|
57157
57158
|
})(DirName2 = exports2.DirName || (exports2.DirName = {}));
|
|
57158
57159
|
var FileName;
|
|
57159
57160
|
(function(FileName2) {
|
|
@@ -57170,6 +57171,7 @@ var require_constants = __commonJS({
|
|
|
57170
57171
|
FileName2["Ui5Yaml"] = "ui5.yaml";
|
|
57171
57172
|
FileName2["Ui5LocalYaml"] = "ui5-local.yaml";
|
|
57172
57173
|
FileName2["Ui5MockYaml"] = "ui5-mock.yaml";
|
|
57174
|
+
FileName2["Ui5DeployYaml"] = "ui5-deploy.yaml";
|
|
57173
57175
|
FileName2["fioriSandboxConfig"] = "fioriSandboxConfig.json";
|
|
57174
57176
|
FileName2["View"] = "view.xml";
|
|
57175
57177
|
})(FileName = exports2.FileName || (exports2.FileName = {}));
|
|
@@ -57414,10 +57416,10 @@ var import_logger = __toESM(require_logger2());
|
|
|
57414
57416
|
// ../../node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
57415
57417
|
function _typeof(obj2) {
|
|
57416
57418
|
"@babel/helpers - typeof";
|
|
57417
|
-
return _typeof = typeof Symbol
|
|
57419
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj3) {
|
|
57418
57420
|
return typeof obj3;
|
|
57419
57421
|
} : function(obj3) {
|
|
57420
|
-
return obj3 && typeof Symbol
|
|
57422
|
+
return obj3 && "function" == typeof Symbol && obj3.constructor === Symbol && obj3 !== Symbol.prototype ? "symbol" : typeof obj3;
|
|
57421
57423
|
}, _typeof(obj2);
|
|
57422
57424
|
}
|
|
57423
57425
|
|
|
@@ -59556,209 +59558,111 @@ var i18next = new I18n();
|
|
|
59556
59558
|
var i18next_default = i18next;
|
|
59557
59559
|
|
|
59558
59560
|
// src/i18n/i18n.json
|
|
59559
|
-
var ABAP_PACKAGE = "ABAP package";
|
|
59560
|
-
var ADDING_ARTIFACT_TO_PROJECT = "Adding {{artifact}} to the project.";
|
|
59561
|
-
var APPLICATION_NAME = "Application Name";
|
|
59562
|
-
var ARTIFACT_ADDED = "{{artifact}} added to the project.";
|
|
59563
|
-
var ARTIFACT_NOT_ADDED = "{{artifact}} not added to the project.";
|
|
59564
|
-
var CLIENT = "Client";
|
|
59565
|
-
var CONFIRM_DEPLOYMENT_TESTMODE = "Confirmation is required to deploy the app in test mode:";
|
|
59566
|
-
var CONFIRM_DEPLOYMENT = "Confirmation is required to deploy the app:";
|
|
59567
|
-
var CONNECTING_WITHOUT_CREDS = "Connecting without any credentials, deployment may fail if authorization is required";
|
|
59568
|
-
var CONSIDER_REMOVING_CLIENT_FROM_CONFIG = "Please remove the client from ui5-deploy.yaml, if you don't want to see the above warning again";
|
|
59569
|
-
var DEPLOY_CANCELED = "Deploy canceled";
|
|
59570
|
-
var DEPLOY_EXECUTED = "deploy executed.";
|
|
59571
|
-
var DESTINATION = "Destination";
|
|
59572
|
-
var ERROR_COMMAND_CMD = "Command {{cmd}} does not exist.";
|
|
59573
|
-
var ERROR_INVALID_DEPLOYMENT_CONFIGURATION = "Invalid deployment configuration. Property {{property}} is missing.";
|
|
59574
|
-
var ERROR_USER_PASSWORD_PLAIN = "Username or password must not be provided in plain text. Use environment variables.";
|
|
59575
|
-
var ERROR_YO_NOT_INSTALLED = "Yeoman is not installed or available in your executable path. Please check your configuration or use npm/yarn to install it globally";
|
|
59576
|
-
var ERROR_INSTALL_FIORI_GENERATOR = "Do you need to install {{fioriGenerator}} globally?\nnpm install -g {{fioriGenerator}}\nOR\nyarn global add {{fioriGenerator}}";
|
|
59577
|
-
var FILE_CREATED = "File {{file}} created in {{- folder}}";
|
|
59578
|
-
var GENERATE_STANDALONE_INDEX_HTML = "Generate standalone index.html during deployment";
|
|
59579
|
-
var INDEX_EXISTS_NOT_OVERWRITING = "'index.html' already exists, not generating one";
|
|
59580
|
-
var INDEX_HTML_ADDED = "index.html added";
|
|
59581
|
-
var INFO_CREATE_ARCHIVE = "Create Archive";
|
|
59582
|
-
var INFO_COMMAND_FAILED = "Command {{cmd}} failed with error {{-message}}";
|
|
59583
|
-
var INFO_DEPLOYMENT_SUCCESSFUL = "Deployment Successful.";
|
|
59584
|
-
var INFO_DEPLOYMENT_FAILED = "Deployment Failed.";
|
|
59585
|
-
var INFO_TEST_MODE = "Deployment in TestMode completed. A successful TestMode execution does not necessarily mean that your upload will be successful";
|
|
59586
|
-
var ERROR_NO_SYSTEM_IN_STORE = "Error in deployment. The BTP system used in the deployment configuration could not be found as one of your local saved SAP systems. Please ensure you have saved this system locally so that it can be used for deployment.";
|
|
59587
|
-
var INFO_FILE_PATH_ADDED = "{{path}} added";
|
|
59588
|
-
var INFO_LIVERELOAD_STARTED = "Livereload middleware started for port {{port}} and path {{-watchPath}}";
|
|
59589
|
-
var ERROR_STARTING_LIVERELOAD = "Port {{port}} was not exposed! Livereload will not work!";
|
|
59590
|
-
var INFO_STARTING_DEPLOYMENT = "Starting Deployment.";
|
|
59591
|
-
var INFO_STORE_DETAILS = "Storing details for system: ";
|
|
59592
|
-
var INFO_USED_DESTINATION = "Used destination: ";
|
|
59593
|
-
var INVALID_DATA = "Invalid data";
|
|
59594
|
-
var INVALID_ODATA_VERSION = "The middleware fiori-tools-preview can only be used with OData version 4";
|
|
59595
|
-
var MAINTAIN_CREDENTIALS = "Please maintain correct credentials to avoid seeing this error\n (see help: https://www.npmjs.com/package/@sap/ux-ui5-tooling#setting-environment-variables-in-a-env-file)";
|
|
59596
|
-
var NO_PATH_LOCAL_UI5 = "No path to local UI5 sources provided!";
|
|
59597
|
-
var PACKAGE = "Package";
|
|
59598
|
-
var PACKAGE_JSON_UPDATED = "package.json updated.";
|
|
59599
|
-
var PACKAGE_NAME_REQUIRED = "Package name required";
|
|
59600
|
-
var PROXY_STARTED_FOR = "Proxy started for ";
|
|
59601
|
-
var SERVICE_KEYS_CONTENT_EMPTY = "Service keys contents cannot be empty";
|
|
59602
|
-
var START_DEPLOYMENT = "Start deployment (Y/n)?";
|
|
59603
|
-
var START_DEPLOYMENT_TESTMODE = "Start deployment in test mode (Y/n)?";
|
|
59604
|
-
var SYSTEM_NAME_EMPTY = "System Name cannot be empty";
|
|
59605
|
-
var SYSTEM_NAME_IN_USE = "[{{name}}] is already in use";
|
|
59606
|
-
var TARGET = "Target";
|
|
59607
|
-
var TRANSPORT_REQUEST = "Transport Request";
|
|
59608
|
-
var USE_IT_INSTEAD = "Use it instead (Y/n)?";
|
|
59609
|
-
var USING_SYSTEM_WITH_SAME_URL_NO_CLIENT = "Using system [{{name}}] with same URL, no client from System Store";
|
|
59610
|
-
var USING_SYSTEM_FROM_STORE = "Using system [{{name}}] from System store";
|
|
59611
|
-
var WARNING_PACKAGE_IN_CUSTOMER_SPACE = "Your package is in the customer space. Please check the correctness of the application name as it might need to start with a Z.";
|
|
59612
|
-
var ERROR_EXTRACT_API_KEY = "Could not extract API hub key from '{{-envPath}}'";
|
|
59613
|
-
var ERROR_API_HUB_KEY = "Property apiHub is set to true in yaml file, but file '{{-envPath}}' doesn't contain API key. Error was: ${{-message}}";
|
|
59614
|
-
var SSL_IGNORE_WARNING = "You chose not to validate SSL certificate. Please verify the server certificate is trustful before proceeding. See documentation for recommended configuration (https://help.sap.com/viewer/17d50220bcd848aa854c9c182d65b699/Latest/en-US/4b318bede7eb4021a8be385c46c74045.html).";
|
|
59615
|
-
var SSL_PROXY_ERROR = "You are trying to connect to a server with a self signed certificate. Please check (https://help.sap.com/viewer/17d50220bcd848aa854c9c182d65b699/Latest/en-US/4b318bede7eb4021a8be385c46c74045.html) for guidance.";
|
|
59616
|
-
var NO_DEPLOY_CONFIG = "No deployment configuration has been detected. Run `npm run deploy-config` to add configuration first.";
|
|
59617
|
-
var NO_BSP_APPLICATION = "Mandatory parameter --bspApplication <value> is missing. Please provide BSP Application";
|
|
59618
|
-
var YAML_NOT_FOUND = "Configuration file {{-yamlPath}} not found. Please provide a valid path";
|
|
59619
|
-
var NO_BUILD_SCRIPT = "Warning: No build script was found. You will need to execute build, before running start-flp.";
|
|
59620
|
-
var CONFIRM_UNDEPLOYMENT = "Confirmation is required to undeploy the app:";
|
|
59621
|
-
var INFO_STARTING_UNDEPLOYMENT = "Starting undeployment.";
|
|
59622
|
-
var INFO_UNDEPLOYMENT_SUCCESSFUL = "Undeployment Successful.";
|
|
59623
|
-
var INFO_UNDEPLOYMENT_FAILED = "Undeployment Failed.";
|
|
59624
|
-
var START_UNDEPLOYMENT = "Start undeployment (Y/n)?";
|
|
59625
|
-
var USERNAME = "Username:";
|
|
59626
|
-
var PASSWORD = "Password:";
|
|
59627
|
-
var REQUIRE_CREDENTIAL = "The deployment destination requires authentication. Please enter your credentials below";
|
|
59628
|
-
var REQUIRE_CREDENTIAL_FLP = "The FLP Embedded Preview requires credentials. Please enter your credentials below";
|
|
59629
|
-
var ERROR_NO_VSCODE_SETTINGS_FILE = "No VSCode Settings file found.";
|
|
59630
|
-
var INFO_SAML_NOT_SUPPORTED = "The backend service seems to require direct SAML authentication, which is not yet supported.";
|
|
59631
|
-
var INFO_RESPONSE_UNCERTAIN = "Successful deployment could not be confirmed based on the response message received. Please manually verify if the deployment was successful.";
|
|
59632
|
-
var VSCODE_SETTINGS_FILE_NOT_PARSEABLE = "Not able to parse VSCode settings.json file.";
|
|
59633
|
-
var ERROR_EMPTY_USERNAME = "Username can not be empty.";
|
|
59634
|
-
var ERROR_EMPTY_PASSWORD = "Password can not be empty.";
|
|
59635
|
-
var OPERATION_ABORTED = "Operation aborted by the user.";
|
|
59636
|
-
var ERROR_ACHIVE_FROM_EXTERNAL_FILEPATH = "The archive file you provided could not be found.";
|
|
59637
|
-
var ERROR_ACHIVE_FROM_EXTERNAL_URL = "The archive url you provided could not be reached. Please ensure the URL is accessible and does not require authentication. {{error}}";
|
|
59638
|
-
var NO_CAP = "CAP projects are not supported.";
|
|
59639
|
-
var DEPLOYMENT_MSG = "To retrieve the deployed URL, run the following command:";
|
|
59640
|
-
var DEPLOYMENT_MANAGED_CF_URL = "cf html5-list -u -di {{-mtaId}}-destination-service -u --runtime launchpad";
|
|
59641
|
-
var DEPLOYMENT_HELP = "For more help, go to https://help.sap.com/viewer/17d50220bcd848aa854c9c182d65b699/Latest/en-US/607014e278d941fda4440f92f4a324a6.html";
|
|
59642
|
-
var DEPLOYMENT_STANDALONE_CF_URL = "Please see the deployed application URL above";
|
|
59643
|
-
var ERROR_NO_UI5_FLEX_LAYER = "The UI5 Flexibility Layer for this project is not set. Please open the command palette and execute the command {{command}}.";
|
|
59644
|
-
var ERROR_WRONG_UI5_FLEX_LAYER = "The value of the UI5 Flexibility Layer is wrong. Please open the command palette and execute the command {{command}}.";
|
|
59645
|
-
var ERROR_WRONG_MINUI5VERSION = "Developer variant creation works only with UI5 version {{version}} or higher. Please update the minUI5Version in the manifest.json to {{version}} or higher.";
|
|
59646
|
-
var ERROR_WRONG_UI5VERSION = "Developer variant creation works only with UI5 version {{version}} or higher. Please update the UI5 version in the {{-location}} to {{version}} or higher.";
|
|
59647
|
-
var VARIANT_MANAGEMENT_VSCODE_CONFIGURATION_COMMAND = "Fiori: Add Configuration for Variants Creation";
|
|
59648
|
-
var NO_HELP_MARKDOWN_FOUND = "Help content cannot be loaded";
|
|
59649
|
-
var UNKNOWN_ADD_SUBCOMMAND = "Subcommand {{artifact}} is not supported. Please check the following supported subcommands.";
|
|
59650
|
-
var CONTROL_PROPERTY_EDITOR_UNSUPPORTED_FE_VERSION = "Control property editor is available only for SAP Fiori Elements v2 apps";
|
|
59651
|
-
var CONTROL_PROPERTY_EDITOR_MIN_UI5_VERSION = "Control property editor works only with SAP UI5 version {{version}} or higher. Please update the SAP UI5 version in the {{-location}} to {{version}} or higher.";
|
|
59652
|
-
var CONTROL_PROPERTY_EDITOR_VSCODE_CONFIGURATION_COMMAND = "Fiori: Add Configuration for Control Property Editor";
|
|
59653
|
-
var UI5_VERSION_SOURCE = "Using UI5 version {{version}} based on {{-file}}";
|
|
59654
|
-
var FLP_EMBEDDED_NO_DIST = "Folder {{-folder}} is missing. Please build your application first, before starting the embedded preview.";
|
|
59655
|
-
var WARN_TARGET_SYSTEM_UI5_VERSION = "Target system's SAPUI5 version is lower than the local minUI5Version. Testing locally with different Run Configurations recommended https://help.sap.com/viewer/17d50220bcd848aa854c9c182d65b699/Latest/en-US/09171c8bc3a64ec7848f0ef31770a793.html";
|
|
59656
|
-
var TARGET_SYSTEM_UI5_VERSION = "Target System SAPUI5 version";
|
|
59657
|
-
var PREV_DEPLOY_DIFFERENT_APP_ID = "An app in the same repository with different sap app id found:";
|
|
59658
|
-
var REQUIRE_OVERWRITE_DEPLOY = "Do you want to overwrite (Y/n)?";
|
|
59659
|
-
var ERROR_READING_MANIFEST_JSON = "Error reading manifest.json from '{{manifestPath}}'. Error was : '{{message}}'.";
|
|
59660
59561
|
var i18n_default = {
|
|
59661
|
-
ABAP_PACKAGE,
|
|
59662
|
-
ADDING_ARTIFACT_TO_PROJECT,
|
|
59663
|
-
APPLICATION_NAME,
|
|
59664
|
-
ARTIFACT_ADDED,
|
|
59665
|
-
ARTIFACT_NOT_ADDED,
|
|
59666
|
-
CLIENT,
|
|
59667
|
-
CONFIRM_DEPLOYMENT_TESTMODE,
|
|
59668
|
-
CONFIRM_DEPLOYMENT,
|
|
59669
|
-
CONNECTING_WITHOUT_CREDS,
|
|
59670
|
-
CONSIDER_REMOVING_CLIENT_FROM_CONFIG,
|
|
59671
|
-
DEPLOY_CANCELED,
|
|
59672
|
-
|
|
59673
|
-
|
|
59674
|
-
|
|
59675
|
-
|
|
59676
|
-
|
|
59677
|
-
|
|
59678
|
-
|
|
59679
|
-
|
|
59680
|
-
|
|
59681
|
-
|
|
59682
|
-
|
|
59683
|
-
|
|
59684
|
-
|
|
59685
|
-
|
|
59686
|
-
|
|
59687
|
-
|
|
59688
|
-
|
|
59689
|
-
|
|
59690
|
-
|
|
59691
|
-
|
|
59692
|
-
|
|
59693
|
-
|
|
59694
|
-
|
|
59695
|
-
|
|
59696
|
-
|
|
59697
|
-
|
|
59698
|
-
|
|
59699
|
-
|
|
59700
|
-
|
|
59701
|
-
|
|
59702
|
-
|
|
59703
|
-
|
|
59704
|
-
|
|
59705
|
-
|
|
59706
|
-
|
|
59707
|
-
|
|
59708
|
-
|
|
59709
|
-
|
|
59710
|
-
|
|
59711
|
-
|
|
59712
|
-
|
|
59713
|
-
|
|
59714
|
-
|
|
59715
|
-
|
|
59716
|
-
|
|
59717
|
-
|
|
59718
|
-
|
|
59719
|
-
|
|
59720
|
-
|
|
59721
|
-
|
|
59722
|
-
|
|
59723
|
-
|
|
59724
|
-
|
|
59725
|
-
|
|
59726
|
-
|
|
59727
|
-
|
|
59728
|
-
|
|
59729
|
-
|
|
59730
|
-
|
|
59731
|
-
|
|
59732
|
-
|
|
59733
|
-
|
|
59734
|
-
|
|
59735
|
-
|
|
59736
|
-
|
|
59737
|
-
|
|
59738
|
-
|
|
59739
|
-
|
|
59740
|
-
|
|
59741
|
-
|
|
59742
|
-
|
|
59743
|
-
|
|
59744
|
-
|
|
59745
|
-
|
|
59746
|
-
|
|
59747
|
-
|
|
59748
|
-
|
|
59749
|
-
|
|
59750
|
-
|
|
59751
|
-
|
|
59752
|
-
|
|
59753
|
-
|
|
59754
|
-
|
|
59755
|
-
|
|
59756
|
-
|
|
59757
|
-
|
|
59758
|
-
|
|
59759
|
-
|
|
59760
|
-
|
|
59761
|
-
|
|
59562
|
+
ABAP_PACKAGE: "ABAP package",
|
|
59563
|
+
ADDING_ARTIFACT_TO_PROJECT: "Adding {{artifact}} to the project.",
|
|
59564
|
+
APPLICATION_NAME: "Application Name",
|
|
59565
|
+
ARTIFACT_ADDED: "{{artifact}} added to the project.",
|
|
59566
|
+
ARTIFACT_NOT_ADDED: "{{artifact}} not added to the project.",
|
|
59567
|
+
CLIENT: "Client",
|
|
59568
|
+
CONFIRM_DEPLOYMENT_TESTMODE: "Confirmation is required to deploy the app in test mode:",
|
|
59569
|
+
CONFIRM_DEPLOYMENT: "Confirmation is required to deploy the app:",
|
|
59570
|
+
CONNECTING_WITHOUT_CREDS: "Connecting without any credentials, deployment may fail if authorization is required",
|
|
59571
|
+
CONSIDER_REMOVING_CLIENT_FROM_CONFIG: "Please remove the client from ui5-deploy.yaml, if you don't want to see the above warning again",
|
|
59572
|
+
DEPLOY_CANCELED: "Deploy canceled",
|
|
59573
|
+
ERROR_DEPLOYMENT_FAILED_NO_DIST: "Deployment has failed. Please ensure there is a valid deployment archive file in the dist folder of the application that can be deployed.",
|
|
59574
|
+
DEPLOY_EXECUTED: "deploy executed.",
|
|
59575
|
+
DESTINATION: "Destination",
|
|
59576
|
+
ERROR_COMMAND_CMD: "Command {{cmd}} does not exist.",
|
|
59577
|
+
ERROR_INVALID_DEPLOYMENT_CONFIGURATION: "Invalid deployment configuration. Property {{property}} is missing.",
|
|
59578
|
+
ERROR_USER_PASSWORD_PLAIN: "Username or password must not be provided in plain text. Use environment variables.",
|
|
59579
|
+
ERROR_YO_NOT_INSTALLED: "Yeoman is not installed or available in your executable path. Please check your configuration or use npm/yarn to install it globally",
|
|
59580
|
+
ERROR_INSTALL_FIORI_GENERATOR: "Do you need to install {{fioriGenerator}} globally?\nnpm install -g {{fioriGenerator}}\nOR\nyarn global add {{fioriGenerator}}",
|
|
59581
|
+
FILE_CREATED: "File {{file}} created in {{- folder}}",
|
|
59582
|
+
GENERATE_STANDALONE_INDEX_HTML: "Generate standalone index.html during deployment",
|
|
59583
|
+
INDEX_EXISTS_NOT_OVERWRITING: "'index.html' already exists, not generating one",
|
|
59584
|
+
INDEX_HTML_ADDED: "index.html added",
|
|
59585
|
+
INFO_CREATE_ARCHIVE: "Create Archive",
|
|
59586
|
+
INFO_COMMAND_FAILED: "Command {{cmd}} failed with error {{-message}}",
|
|
59587
|
+
INFO_DEPLOYMENT_SUCCESSFUL: "Deployment Successful.",
|
|
59588
|
+
INFO_DEPLOYMENT_FAILED: "Deployment Failed.",
|
|
59589
|
+
INFO_TEST_MODE: "Deployment in TestMode completed. A successful TestMode execution does not necessarily mean that your upload will be successful",
|
|
59590
|
+
ERROR_NO_SYSTEM_IN_STORE: "Error in deployment. The BTP system used in the deployment configuration could not be found as one of your local saved SAP systems. Please ensure you have saved this system locally so that it can be used for deployment.",
|
|
59591
|
+
INFO_FILE_PATH_ADDED: "{{path}} added",
|
|
59592
|
+
INFO_LIVERELOAD_STARTED: "Livereload middleware started for port {{port}} and path {{-watchPath}}",
|
|
59593
|
+
ERROR_STARTING_LIVERELOAD: "Port {{port}} was not exposed! Livereload will not work!",
|
|
59594
|
+
INFO_STARTING_DEPLOYMENT: "Starting Deployment.",
|
|
59595
|
+
INFO_STORE_DETAILS: "Storing details for system: ",
|
|
59596
|
+
INFO_USED_DESTINATION: "Used destination: ",
|
|
59597
|
+
INVALID_DATA: "Invalid data",
|
|
59598
|
+
INVALID_ODATA_VERSION: "The middleware fiori-tools-preview can only be used with OData version 4",
|
|
59599
|
+
MAINTAIN_CREDENTIALS: "Please maintain correct credentials to avoid seeing this error\n (see help: https://www.npmjs.com/package/@sap/ux-ui5-tooling#setting-environment-variables-in-a-env-file)",
|
|
59600
|
+
NO_PATH_LOCAL_UI5: "No path to local UI5 sources provided!",
|
|
59601
|
+
PACKAGE: "Package",
|
|
59602
|
+
PACKAGE_JSON_UPDATED: "package.json updated.",
|
|
59603
|
+
PACKAGE_NAME_REQUIRED: "Package name required",
|
|
59604
|
+
PROXY_STARTED_FOR: "Proxy started for ",
|
|
59605
|
+
SERVICE_KEYS_CONTENT_EMPTY: "Service keys contents cannot be empty",
|
|
59606
|
+
START_DEPLOYMENT: "Start deployment (Y/n)?",
|
|
59607
|
+
START_DEPLOYMENT_TESTMODE: "Start deployment in test mode (Y/n)?",
|
|
59608
|
+
SYSTEM_NAME_EMPTY: "System Name cannot be empty",
|
|
59609
|
+
SYSTEM_NAME_IN_USE: "[{{name}}] is already in use",
|
|
59610
|
+
TARGET: "Target",
|
|
59611
|
+
TRANSPORT_REQUEST: "Transport Request",
|
|
59612
|
+
USE_IT_INSTEAD: "Use it instead (Y/n)?",
|
|
59613
|
+
USING_SYSTEM_WITH_SAME_URL_NO_CLIENT: "Using system [{{name}}] with same URL, no client from System Store",
|
|
59614
|
+
USING_SYSTEM_FROM_STORE: "Using system [{{name}}] from System store",
|
|
59615
|
+
WARNING_PACKAGE_IN_CUSTOMER_SPACE: "Your package is in the customer space. Please check the correctness of the application name as it might need to start with a Z.",
|
|
59616
|
+
ERROR_EXTRACT_API_KEY: "Could not extract API hub key from '{{-envPath}}'",
|
|
59617
|
+
ERROR_API_HUB_KEY: "Property apiHub is set to true in yaml file, but file '{{-envPath}}' doesn't contain API key. Error was: ${{-message}}",
|
|
59618
|
+
SSL_IGNORE_WARNING: "You chose not to validate SSL certificate. Please verify the server certificate is trustful before proceeding. See documentation for recommended configuration (https://help.sap.com/viewer/17d50220bcd848aa854c9c182d65b699/Latest/en-US/4b318bede7eb4021a8be385c46c74045.html).",
|
|
59619
|
+
SSL_PROXY_ERROR: "You are trying to connect to a server with a self signed certificate. Please check (https://help.sap.com/viewer/17d50220bcd848aa854c9c182d65b699/Latest/en-US/4b318bede7eb4021a8be385c46c74045.html) for guidance.",
|
|
59620
|
+
NO_DEPLOY_CONFIG: "No deployment configuration has been detected. Run `npm run deploy-config` to add configuration first.",
|
|
59621
|
+
NO_BSP_APPLICATION: "Mandatory parameter --bspApplication <value> is missing. Please provide BSP Application",
|
|
59622
|
+
YAML_NOT_FOUND: "Configuration file {{-yamlPath}} not found. Please provide a valid path",
|
|
59623
|
+
NO_BUILD_SCRIPT: "Warning: No build script was found. You will need to execute build, before running start-flp.",
|
|
59624
|
+
CONFIRM_UNDEPLOYMENT: "Confirmation is required to undeploy the app:",
|
|
59625
|
+
INFO_STARTING_UNDEPLOYMENT: "Starting undeployment.",
|
|
59626
|
+
INFO_UNDEPLOYMENT_SUCCESSFUL: "Undeployment Successful.",
|
|
59627
|
+
INFO_UNDEPLOYMENT_FAILED: "Undeployment Failed.",
|
|
59628
|
+
START_UNDEPLOYMENT: "Start undeployment (Y/n)?",
|
|
59629
|
+
USERNAME: "Username:",
|
|
59630
|
+
PASSWORD: "Password:",
|
|
59631
|
+
REQUIRE_CREDENTIAL: "The deployment destination requires authentication. Please enter your credentials below",
|
|
59632
|
+
REQUIRE_CREDENTIAL_FLP: "The FLP Embedded Preview requires credentials. Please enter your credentials below",
|
|
59633
|
+
ERROR_NO_VSCODE_SETTINGS_FILE: "No VSCode Settings file found.",
|
|
59634
|
+
INFO_SAML_NOT_SUPPORTED: "The backend service seems to require direct SAML authentication, which is not yet supported.",
|
|
59635
|
+
INFO_RESPONSE_UNCERTAIN: "Successful deployment could not be confirmed based on the response message received. Please manually verify if the deployment was successful.",
|
|
59636
|
+
VSCODE_SETTINGS_FILE_NOT_PARSEABLE: "Not able to parse VSCode settings.json file.",
|
|
59637
|
+
ERROR_EMPTY_USERNAME: "Username can not be empty.",
|
|
59638
|
+
ERROR_EMPTY_PASSWORD: "Password can not be empty.",
|
|
59639
|
+
OPERATION_ABORTED: "Operation aborted by the user.",
|
|
59640
|
+
ERROR_ACHIVE_FROM_EXTERNAL_FILEPATH: "The archive file you provided could not be found.",
|
|
59641
|
+
ERROR_ACHIVE_FROM_EXTERNAL_URL: "The archive url you provided could not be reached. Please ensure the URL is accessible and does not require authentication. {{error}}",
|
|
59642
|
+
NO_CAP: "CAP projects are not supported.",
|
|
59643
|
+
DEPLOYMENT_MSG: "To retrieve the deployed URL, run the following command:",
|
|
59644
|
+
DEPLOYMENT_MANAGED_CF_URL: "cf html5-list -u -di {{-mtaId}}-destination-service -u --runtime launchpad",
|
|
59645
|
+
DEPLOYMENT_HELP: "For more help, go to https://help.sap.com/viewer/17d50220bcd848aa854c9c182d65b699/Latest/en-US/607014e278d941fda4440f92f4a324a6.html",
|
|
59646
|
+
DEPLOYMENT_STANDALONE_CF_URL: "Please see the deployed application URL above",
|
|
59647
|
+
ERROR_NO_UI5_FLEX_LAYER: "The UI5 Flexibility Layer for this project is not set. Please open the command palette and execute the command {{command}}.",
|
|
59648
|
+
ERROR_WRONG_UI5_FLEX_LAYER: "The value of the UI5 Flexibility Layer is wrong. Please open the command palette and execute the command {{command}}.",
|
|
59649
|
+
ERROR_WRONG_MINUI5VERSION: "Developer variant creation works only with UI5 version {{version}} or higher. Please update the minUI5Version in the manifest.json to {{version}} or higher.",
|
|
59650
|
+
ERROR_WRONG_UI5VERSION: "Developer variant creation works only with UI5 version {{version}} or higher. Please update the UI5 version in the {{-location}} to {{version}} or higher.",
|
|
59651
|
+
VARIANT_MANAGEMENT_VSCODE_CONFIGURATION_COMMAND: "Fiori: Add Configuration for Variants Creation",
|
|
59652
|
+
NO_HELP_MARKDOWN_FOUND: "Help content cannot be loaded",
|
|
59653
|
+
UNKNOWN_ADD_SUBCOMMAND: "Subcommand {{artifact}} is not supported. Please check the following supported subcommands.",
|
|
59654
|
+
CONTROL_PROPERTY_EDITOR_UNSUPPORTED_FE_VERSION: "Control property editor is available only for SAP Fiori Elements v2 apps",
|
|
59655
|
+
CONTROL_PROPERTY_EDITOR_MIN_UI5_VERSION: "Control property editor works only with SAP UI5 version {{version}} or higher. Please update the SAP UI5 version in the {{-location}} to {{version}} or higher.",
|
|
59656
|
+
CONTROL_PROPERTY_EDITOR_VSCODE_CONFIGURATION_COMMAND: "Fiori: Add Configuration for Control Property Editor",
|
|
59657
|
+
UI5_VERSION_SOURCE: "Using UI5 version {{version}} based on {{-file}}",
|
|
59658
|
+
FLP_EMBEDDED_NO_DIST: "Folder {{-folder}} is missing. Please build your application first, before starting the embedded preview.",
|
|
59659
|
+
WARN_TARGET_SYSTEM_UI5_VERSION: "Target system's SAPUI5 version is lower than the local minUI5Version. Testing locally with different Run Configurations recommended https://help.sap.com/viewer/17d50220bcd848aa854c9c182d65b699/Latest/en-US/09171c8bc3a64ec7848f0ef31770a793.html",
|
|
59660
|
+
TARGET_SYSTEM_UI5_VERSION: "Target System SAPUI5 version",
|
|
59661
|
+
PREV_DEPLOY_DIFFERENT_APP_ID: "An app in the same repository with different sap app id found:",
|
|
59662
|
+
REQUIRE_OVERWRITE_DEPLOY: "Do you want to overwrite (Y/n)?",
|
|
59663
|
+
ERROR_READING_MANIFEST_JSON: "Error reading manifest.json from '{{manifestPath}}'. Error was : '{{message}}'.",
|
|
59664
|
+
REMOVED_VERSION_INFO: "Version {{oldVersion}} is not available on the SAPUI5 SDK, using version {{newVersion}} instead.",
|
|
59665
|
+
ABAP_DEPLOYMENT_404_WARNING: "Request failed with status code 404. Guided Answers troubleshooting guide available at https://ga.support.sap.com/dtp/viewer/index.html#/tree/3046/actions/45995:45996:45999:46000:46002"
|
|
59762
59666
|
};
|
|
59763
59667
|
|
|
59764
59668
|
// src/i18n.ts
|