@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.js CHANGED
@@ -1842,7 +1842,11 @@ async function tester ({projectRoot}) {
1842
1842
  jsPackageManagerIsUsed({projectRoot})
1843
1843
  ]);
1844
1844
 
1845
- return nvmFound || jsPackageManagerFound;
1845
+ const jsProjectFound = nvmFound || jsPackageManagerFound;
1846
+
1847
+ if (jsProjectFound) cliMessages.info('JavaScript Project Detected');
1848
+
1849
+ return jsProjectFound;
1846
1850
  }
1847
1851
 
1848
1852
  const questionNames = {...languageScaffolderPrompts.questionNames, ...questionNames$1};