@uxf/scripts 11.114.1 → 11.117.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxf/scripts",
3
- "version": "11.114.1",
3
+ "version": "11.117.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -50,6 +50,6 @@
50
50
  "@types/react-dom": "18.3.7",
51
51
  "@types/semver": "^7.7.1",
52
52
  "@uxf/core": "11.114.0",
53
- "@uxf/ui": "11.114.0"
53
+ "@uxf/ui": "11.117.2"
54
54
  }
55
55
  }
@@ -11,7 +11,7 @@ exports.printSuggestedCommands = printSuggestedCommands;
11
11
  exports.installDeps = installDeps;
12
12
  const child_process_1 = require("child_process");
13
13
  const path_1 = __importDefault(require("path"));
14
- const semver_1 = __importDefault(require("semver"));
14
+ const semver_1 = require("semver");
15
15
  const detect_package_manager_1 = require("./detect-package-manager");
16
16
  const package_json_1 = require("./package-json");
17
17
  /** Packages that consumers always install themselves — skip these in suggestions */
@@ -60,7 +60,7 @@ function collectRequiredPeerDeps(uxfPackages, nodeModulesPath, projectPkg) {
60
60
  */
61
61
  function isCompatible(installed, required) {
62
62
  try {
63
- if (semver_1.default.subset(installed, required, { includePrerelease: true })) {
63
+ if ((0, semver_1.subset)(installed, required, { includePrerelease: true })) {
64
64
  return true;
65
65
  }
66
66
  }