js-style-kit 0.7.0 → 0.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.
@@ -3541,7 +3541,8 @@ var getDependencies = () => {
3541
3541
  "package.json"
3542
3542
  );
3543
3543
  try {
3544
- if (import_node_fs3.default.existsSync(nodeModulesPath)) {
3544
+ const exists = import_node_fs3.default.existsSync(nodeModulesPath);
3545
+ if (exists) {
3545
3546
  const jsStyleKitPackageJson = JSON.parse(
3546
3547
  import_node_fs3.default.readFileSync(nodeModulesPath, "utf8")
3547
3548
  );