@sap-ux/ui5-library-inquirer 0.5.6 → 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.
- package/dist/index.js +3 -1
- package/package.json +1 -1
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
|
|
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