@form8ion/javascript 12.3.0 → 12.4.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/lib/index.mjs CHANGED
@@ -1806,7 +1806,11 @@ async function tester ({projectRoot}) {
1806
1806
  jsPackageManagerIsUsed({projectRoot})
1807
1807
  ]);
1808
1808
 
1809
- return nvmFound || jsPackageManagerFound;
1809
+ const jsProjectFound = nvmFound || jsPackageManagerFound;
1810
+
1811
+ if (jsProjectFound) info('JavaScript Project Detected');
1812
+
1813
+ return jsProjectFound;
1810
1814
  }
1811
1815
 
1812
1816
  const questionNames = {...questionNames$2, ...questionNames$1};