babel-plugin-reactylon 1.1.1 → 1.2.0-alpha.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.
@@ -99,7 +99,7 @@ class ParserUtils {
99
99
  console.error(`The module "${moduleName}" doesn't exist or cannot be resolved.`);
100
100
  return { exports: {}, sideEffects: {} };
101
101
  }
102
- const modulePath = fs.realpathSync(path.dirname(pkgJsonPath));
102
+ const modulePath = path.dirname(pkgJsonPath);
103
103
  const exportsMap = {};
104
104
  const sideEffectsMap = {};
105
105
  this.scanDirectory(modulePath, exportsMap, sideEffectsMap, modulePath, moduleName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babel-plugin-reactylon",
3
- "version": "1.1.1",
3
+ "version": "1.2.0-alpha.0",
4
4
  "description": "Babel plugin to enable tree-shaking of Babylon.js classes within a Reactylon application.",
5
5
  "main": "build/index.js",
6
6
  "type": "module",