@sap-ux/ui5-library-reference-inquirer 0.4.46 → 0.4.49

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/choices.js +2 -2
  2. package/package.json +4 -4
package/dist/choices.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getLibraryChoices = exports.getProjectChoices = void 0;
4
- const path_1 = require("path");
4
+ const node_path_1 = require("node:path");
5
5
  /**
6
6
  * Creates the project choice options.
7
7
  *
@@ -12,7 +12,7 @@ const getProjectChoices = async (apps) => {
12
12
  const projectChoices = [];
13
13
  if (apps) {
14
14
  for (const app of apps) {
15
- const name = (0, path_1.basename)(app.appRoot);
15
+ const name = (0, node_path_1.basename)(app.appRoot);
16
16
  projectChoices.push({ name, value: app.appRoot });
17
17
  }
18
18
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sap-ux/ui5-library-reference-inquirer",
3
3
  "description": "Prompts module that can provide prompts for UI5 library writer",
4
- "version": "0.4.46",
4
+ "version": "0.4.49",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/SAP/open-ux-tools.git",
@@ -20,11 +20,11 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "i18next": "25.3.0",
23
- "@sap-ux/inquirer-common": "0.7.46",
24
- "@sap-ux/project-access": "1.32.2"
23
+ "@sap-ux/inquirer-common": "0.7.48",
24
+ "@sap-ux/project-access": "1.32.3"
25
25
  },
26
26
  "devDependencies": {
27
- "inquirer": "8.2.6",
27
+ "inquirer": "8.2.7",
28
28
  "@sap-devx/yeoman-ui-types": "1.14.4",
29
29
  "@types/inquirer": "8.2.6"
30
30
  },