@sap-ux/ui5-library-inquirer 0.5.5 → 0.6.0

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -22,7 +22,9 @@ async function getPrompts(promptOptions) {
22
22
  onlyNpmVersion: true
23
23
  };
24
24
  // Get only npm-available UI5 versions to avoid post-selection resolution
25
- const ui5Versions = await (0, ui5_info_1.getUI5Versions)(filterOptions);
25
+ const allUI5Versions = await (0, ui5_info_1.getUI5Versions)(filterOptions);
26
+ // Filter for maintained versions only
27
+ const ui5Versions = allUI5Versions.filter((version) => version.maintained === true);
26
28
  const ui5LibPromptInputs = {
27
29
  targetFolder: promptOptions?.targetFolder,
28
30
  includeSeparators: promptOptions?.includeSeparators,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sap-ux/ui5-library-inquirer",
3
3
  "description": "Prompts module that can provide prompts for UI5 library writer",
4
- "version": "0.5.5",
4
+ "version": "0.6.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/SAP/open-ux-tools.git",
@@ -22,10 +22,10 @@
22
22
  "dependencies": {
23
23
  "i18next": "25.3.0",
24
24
  "inquirer-autocomplete-prompt": "2.0.1",
25
- "@sap-ux/inquirer-common": "0.7.49",
25
+ "@sap-ux/inquirer-common": "0.7.50",
26
26
  "@sap-ux/logger": "0.7.0",
27
27
  "@sap-ux/project-input-validator": "0.6.25",
28
- "@sap-ux/ui5-info": "0.12.4"
28
+ "@sap-ux/ui5-info": "0.13.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "inquirer": "8.2.7",