@sap-ux/fiori-generator-shared 0.7.2 → 0.7.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/dist/constants.d.ts +2 -0
- package/dist/constants.js +4 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +3 -3
package/dist/constants.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export declare const YEOMANUI_TARGET_FOLDER_CONFIG_PROP = "ApplicationWizard.TargetFolder";
|
|
2
2
|
export declare const LOGGING_LEVEL_CONFIG_PROP = "ApplicationWizard.loggingLevel";
|
|
3
3
|
export declare const DEFAULT_PROJECTS_FOLDER: string;
|
|
4
|
+
export declare const YUI_EXTENSION_ID = "sapos.yeoman-ui";
|
|
5
|
+
export declare const YUI_MIN_VER_FILES_GENERATED_MSG = "1.16.6";
|
|
4
6
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
|
@@ -3,10 +3,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.DEFAULT_PROJECTS_FOLDER = exports.LOGGING_LEVEL_CONFIG_PROP = exports.YEOMANUI_TARGET_FOLDER_CONFIG_PROP = void 0;
|
|
6
|
+
exports.YUI_MIN_VER_FILES_GENERATED_MSG = exports.YUI_EXTENSION_ID = exports.DEFAULT_PROJECTS_FOLDER = exports.LOGGING_LEVEL_CONFIG_PROP = exports.YEOMANUI_TARGET_FOLDER_CONFIG_PROP = void 0;
|
|
7
7
|
const os_1 = __importDefault(require("os"));
|
|
8
8
|
const path_1 = require("path");
|
|
9
9
|
exports.YEOMANUI_TARGET_FOLDER_CONFIG_PROP = 'ApplicationWizard.TargetFolder';
|
|
10
10
|
exports.LOGGING_LEVEL_CONFIG_PROP = 'ApplicationWizard.loggingLevel';
|
|
11
11
|
exports.DEFAULT_PROJECTS_FOLDER = (0, path_1.join)(os_1.default.homedir(), 'projects');
|
|
12
|
+
exports.YUI_EXTENSION_ID = 'sapos.yeoman-ui';
|
|
13
|
+
// From YUI version 1.16.6 the message 'The files have been generated.' is not shown unless a top level dir is created
|
|
14
|
+
exports.YUI_MIN_VER_FILES_GENERATED_MSG = '1.16.6';
|
|
12
15
|
//# sourceMappingURL=constants.js.map
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.hostEnvironment = exports.isExtensionInstalled = exports.getHostEnvironment = exports.generateReadMe = exports.getDefaultTargetFolder = exports.getBootstrapResourceUrls = exports.getPackageScripts = void 0;
|
|
18
18
|
__exportStar(require("./cap"), exports);
|
|
19
|
+
__exportStar(require("./constants"), exports);
|
|
19
20
|
__exportStar(require("./environment"), exports);
|
|
20
21
|
__exportStar(require("./logWrapper"), exports);
|
|
21
22
|
__exportStar(require("./system-utils"), exports);
|
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.7.
|
|
4
|
+
"version": "0.7.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"os-name": "4.0.1",
|
|
26
26
|
"semver": "7.5.4",
|
|
27
27
|
"@sap-ux/btp-utils": "0.15.2",
|
|
28
|
-
"@sap-ux/project-access": "1.28.
|
|
29
|
-
"@sap-ux/telemetry": "0.5.
|
|
28
|
+
"@sap-ux/project-access": "1.28.5",
|
|
29
|
+
"@sap-ux/telemetry": "0.5.40"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/mem-fs-editor": "7.0.1",
|