@codemoreira/esad 2.0.1-22 → 2.0.1-24
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 +1 -1
- package/src/plugin/index.js +4 -29
package/package.json
CHANGED
package/src/plugin/index.js
CHANGED
|
@@ -2,7 +2,7 @@ const path = require('node:path');
|
|
|
2
2
|
const fs = require('node:fs');
|
|
3
3
|
const Repack = require('@callstack/repack');
|
|
4
4
|
const { ExpoModulesPlugin } = require('@callstack/repack-plugin-expo-modules');
|
|
5
|
-
const { DefinePlugin
|
|
5
|
+
const { DefinePlugin } = require('@rspack/core');
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* ESAD Re.Pack Plugin Wrapper
|
|
@@ -76,15 +76,6 @@ function withESAD(env, options) {
|
|
|
76
76
|
presets: [
|
|
77
77
|
['babel-preset-expo', { platform }],
|
|
78
78
|
],
|
|
79
|
-
plugins: [
|
|
80
|
-
[
|
|
81
|
-
require.resolve('babel-plugin-transform-define'),
|
|
82
|
-
{
|
|
83
|
-
'process.env.EXPO_OS': platform,
|
|
84
|
-
'process.env.NODE_ENV': isDev ? 'development' : 'production',
|
|
85
|
-
}
|
|
86
|
-
]
|
|
87
|
-
],
|
|
88
79
|
sourceType: 'unambiguous',
|
|
89
80
|
caller: { name: 'repack', platform },
|
|
90
81
|
},
|
|
@@ -103,15 +94,6 @@ function withESAD(env, options) {
|
|
|
103
94
|
presets: [
|
|
104
95
|
['babel-preset-expo', { platform }],
|
|
105
96
|
],
|
|
106
|
-
plugins: [
|
|
107
|
-
[
|
|
108
|
-
require.resolve('babel-plugin-transform-define'),
|
|
109
|
-
{
|
|
110
|
-
'process.env.EXPO_OS': platform,
|
|
111
|
-
'process.env.NODE_ENV': isDev ? 'development' : 'production',
|
|
112
|
-
}
|
|
113
|
-
]
|
|
114
|
-
],
|
|
115
97
|
caller: { name: 'repack', platform },
|
|
116
98
|
},
|
|
117
99
|
},
|
|
@@ -134,16 +116,6 @@ function withESAD(env, options) {
|
|
|
134
116
|
}),
|
|
135
117
|
'__DEV__': JSON.stringify(isDev),
|
|
136
118
|
}),
|
|
137
|
-
new BannerPlugin({
|
|
138
|
-
raw: true,
|
|
139
|
-
entryOnly: true,
|
|
140
|
-
banner: `
|
|
141
|
-
global.process = global.process || { env: {} };
|
|
142
|
-
global.process.env.EXPO_OS = '${platform}';
|
|
143
|
-
global.process.env.NODE_ENV = '${isDev ? 'development' : 'production'}';
|
|
144
|
-
global.process.env.REPACK_PLATFORM = '${platform}';
|
|
145
|
-
`,
|
|
146
|
-
}),
|
|
147
119
|
new ExpoModulesPlugin(),
|
|
148
120
|
new Repack.RepackPlugin(),
|
|
149
121
|
new Repack.plugins.ModuleFederationPluginV2({
|
|
@@ -169,6 +141,9 @@ function withESAD(env, options) {
|
|
|
169
141
|
}
|
|
170
142
|
})
|
|
171
143
|
],
|
|
144
|
+
experiments: {
|
|
145
|
+
parallelLoader: false,
|
|
146
|
+
},
|
|
172
147
|
};
|
|
173
148
|
|
|
174
149
|
// Add Host-specific DevServer magic for Expo
|