@codemoreira/esad 2.0.1-23 → 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 -22
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,9 +116,6 @@ function withESAD(env, options) {
|
|
|
134
116
|
}),
|
|
135
117
|
'__DEV__': JSON.stringify(isDev),
|
|
136
118
|
}),
|
|
137
|
-
new ProvidePlugin({
|
|
138
|
-
process: 'process/browser',
|
|
139
|
-
}),
|
|
140
119
|
new ExpoModulesPlugin(),
|
|
141
120
|
new Repack.RepackPlugin(),
|
|
142
121
|
new Repack.plugins.ModuleFederationPluginV2({
|
|
@@ -162,6 +141,9 @@ function withESAD(env, options) {
|
|
|
162
141
|
}
|
|
163
142
|
})
|
|
164
143
|
],
|
|
144
|
+
experiments: {
|
|
145
|
+
parallelLoader: false,
|
|
146
|
+
},
|
|
165
147
|
};
|
|
166
148
|
|
|
167
149
|
// Add Host-specific DevServer magic for Expo
|