@codemoreira/esad 2.0.1-24 → 2.0.1-26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemoreira/esad",
3
- "version": "2.0.1-24",
3
+ "version": "2.0.1-26",
4
4
  "description": "Easy Super App Development - Zero-Config CLI and DevTools for React Native Module Federation",
5
5
  "main": "src/plugin/index.js",
6
6
  "types": "./src/plugin/index.d.ts",
@@ -0,0 +1,16 @@
1
+ /**
2
+ * ESAD Runtime Environment Shim
3
+ * Injected at the very beginning of the bundle to prevent "TypeError: right operand of 'in' is not an object"
4
+ */
5
+ if (typeof process === 'undefined') {
6
+ // Use globalThis for modern JS environments (Hermes/V8)
7
+ const globalObj = typeof globalThis !== 'undefined' ? globalThis : (typeof global !== 'undefined' ? global : {});
8
+ globalObj.process = { env: {} };
9
+ } else if (!process.env) {
10
+ process.env = {};
11
+ }
12
+
13
+ // These placeholders are replaced by Rspack's DefinePlugin during build time
14
+ process.env.EXPO_OS = '__EXPO_OS__';
15
+ process.env.NODE_ENV = '__NODE_ENV__';
16
+ process.env.REPACK_PLATFORM = '__REPACK_PLATFORM__';
@@ -38,7 +38,10 @@ function withESAD(env, options) {
38
38
  const config = {
39
39
  mode: isDev ? 'development' : 'production',
40
40
  context: dirname,
41
- entry: options.entry || './index.js',
41
+ entry: [
42
+ path.resolve(__dirname, 'env-shim.js'),
43
+ options.entry || './index.js'
44
+ ],
42
45
  output: {
43
46
  path: path.resolve(dirname, 'build', platform),
44
47
  filename: 'index.bundle',
@@ -106,14 +109,12 @@ function withESAD(env, options) {
106
109
  },
107
110
  plugins: [
108
111
  new DefinePlugin({
112
+ '__EXPO_OS__': JSON.stringify(platform),
113
+ '__NODE_ENV__': JSON.stringify(isDev ? 'development' : 'production'),
114
+ '__REPACK_PLATFORM__': JSON.stringify(platform),
109
115
  'process.env.NODE_ENV': JSON.stringify(isDev ? 'development' : 'production'),
110
116
  'process.env.EXPO_OS': JSON.stringify(platform),
111
117
  'process.env.REPACK_PLATFORM': JSON.stringify(platform),
112
- 'process.env': JSON.stringify({
113
- NODE_ENV: isDev ? 'development' : 'production',
114
- EXPO_OS: platform,
115
- REPACK_PLATFORM: platform,
116
- }),
117
118
  '__DEV__': JSON.stringify(isDev),
118
119
  }),
119
120
  new ExpoModulesPlugin(),