@sap-ux/ui5-application-inquirer 0.10.0 → 0.11.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/dist/prompts/prompts.js +1 -1
- package/package.json +3 -3
package/dist/prompts/prompts.js
CHANGED
|
@@ -282,7 +282,7 @@ function getTargetFolderPrompt(targetDir, validateFioriAppFolder) {
|
|
|
282
282
|
default: (answers) => answers.targetFolder || targetDir,
|
|
283
283
|
validate: async (target, { name = '' }) => {
|
|
284
284
|
if (name.length > 2) {
|
|
285
|
-
return await (0, project_input_validator_1.
|
|
285
|
+
return await (0, project_input_validator_1.validateFioriAppTargetFolder)(target, name, validateFioriAppFolder);
|
|
286
286
|
}
|
|
287
287
|
return false;
|
|
288
288
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/ui5-application-inquirer",
|
|
3
3
|
"description": "Prompts module that can prompt users for inputs required for UI5 application writing",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"inquirer-autocomplete-prompt": "2.0.1",
|
|
24
24
|
"lodash": "4.17.21",
|
|
25
25
|
"semver": "7.5.4",
|
|
26
|
-
"@sap-ux/inquirer-common": "0.6.
|
|
26
|
+
"@sap-ux/inquirer-common": "0.6.32",
|
|
27
27
|
"@sap-ux/project-access": "1.29.18",
|
|
28
|
-
"@sap-ux/project-input-validator": "0.
|
|
28
|
+
"@sap-ux/project-input-validator": "0.5.0",
|
|
29
29
|
"@sap-ux/ui5-info": "0.9.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|