@uxf/scripts 11.41.5 → 11.41.6

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.41.5",
3
+ "version": "11.41.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -30,7 +30,7 @@ function parsePackageName(name) {
30
30
 
31
31
  function getUxfPackagesInfo(yarnVersion) {
32
32
  if (yarnVersion > 1) {
33
- return executeJson('yarn info "@uxf/*" --json').then((output) => {
33
+ return executeJson('yarn info "@uxf/*" -AR --json').then((output) => {
34
34
  const result = {};
35
35
 
36
36
  output
@@ -39,11 +39,13 @@ function getUxfPackagesInfo(yarnVersion) {
39
39
  return {
40
40
  name,
41
41
  version,
42
- isError: false, // TODO
42
+ isError: false,
43
43
  };
44
44
  })
45
45
  .forEach((item) => {
46
+ const isError = result[item.name] !== undefined;
46
47
  result[item.name] = item;
48
+ result[item.name].isError = isError;
47
49
  });
48
50
 
49
51
  return result;