shadowx-fca 2.6.0 → 2.8.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/checkUpdate.js CHANGED
@@ -15,7 +15,7 @@ async function checkForFCAUpdate() {
15
15
  const latestVersion = npmData.version;
16
16
 
17
17
  // Check current installed version in node_modules
18
- let currentVersion = '2.4.0';
18
+ let currentVersion = '1.0.8';
19
19
  const nodeModulesPackagePath = path.join(process.cwd(), 'node_modules', 'shadowx-fca', 'package.json');
20
20
  if (fs.existsSync(nodeModulesPackagePath)) {
21
21
  const installedPackage = JSON.parse(fs.readFileSync(nodeModulesPackagePath, 'utf-8'));