-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathwebpack.config.js
More file actions
220 lines (196 loc) · 5.79 KB
/
Copy pathwebpack.config.js
File metadata and controls
220 lines (196 loc) · 5.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// Shoutem moved away from Webpack in favour of ESBuild
// Keeping the file here for a future reference
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlInlineScriptPlugin = require('html-inline-script-webpack-plugin');
const appDirectory = path.resolve(__dirname, '../');
// This is needed for webpack to compile JavaScript.
// Many OSS React Native packages are not compiled to ES5 before being
// published. If you depend on uncompiled packages they may cause webpack build
// errors. To fix this webpack can be configured to compile to the necessary
// `node_module`.
const babelLoaderConfiguration = {
test: /\.(js|jsx|ts|tsx)$/,
// Add every directory that needs to be compiled by Babel during the build.
include: [
//NativeModuleInjectionMark-webpack-config-babel-include
path.resolve(appDirectory, 'index.js'),
path.resolve(appDirectory, 'index.web.js'),
path.resolve(appDirectory, 'core'),
// Multiple extensions reference ( leaving it as general override )
path.resolve(appDirectory, 'node_modules/react-native-image-picker'),
filepath => /extensions\/[^/]+\/app\//.test(filepath),
],
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
// The 'metro-react-native-babel-preset' preset is recommended to match React Native's packager
presets: ['module:@react-native/babel-preset', '@babel/preset-flow'],
// Re-write paths to import only the modules needed by the app
plugins: [
'react-native-web',
[
'module-resolver',
{
alias: {
'^react-native$': 'react-native-web',
'^shoutem-core$': path.resolve(appDirectory, 'core'),
},
},
],
['@babel/plugin-proposal-decorators', { legacy: true }],
],
},
},
};
// This is needed for webpack to import static images in JavaScript files.
const imageLoaderConfiguration = {
test: /\.(gif|jpe?g|png)$/,
use: {
loader: 'url-loader',
options: {
name: '[name].[ext]',
esModule: false,
},
},
};
// SVG import support
const svgImportLoaderConfiguration = {
test: /\.svg$/,
use: [{ loader: '@svgr/webpack', options: { dimensions: false } }],
};
function styleRules(isProduction) {
return [
{
test: /\.css$/,
use: ['style-loader', { loader: 'css-loader' }],
},
{
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
sourceMap: !isProduction,
},
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [require('cssnano')({ preset: 'default' })],
},
sourceMap: !isProduction,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: !isProduction,
},
},
],
},
];
}
const tsLoaderConfiguration = {
test: /\.(ts)x?$/,
exclude: /node_modules|\.d\.ts$/, // this line as well
use: {
loader: 'ts-loader',
options: {
compilerOptions: {
noEmit: false, // this option will solve the issue
},
},
},
};
const htmlLoaderConfiguration = {
test: /\.html$/i,
loader: 'html-loader',
};
const fontLoaderConfiguration = {
test: /\.(ttf|otf)(\?.*)?$/,
use: [
{
loader: 'url-loader',
},
],
};
module.exports = (env, argv) => {
const isProduction = argv.mode === 'production';
const isDev = argv.mode === 'development';
return {
entry: [
// load any web API polyfills
// path.resolve(appDirectory, 'polyfills-web.js'),
// your web-specific entry file
path.resolve(appDirectory, 'index.web.js'),
],
// configures where the build ends up
output: {
filename: 'bundle.web.js',
path: path.resolve(appDirectory, 'dist'),
publicPath: '',
},
// DEV Only
...(isDev
? {
devtool: 'source-map',
}
: {}),
module: {
rules: [
babelLoaderConfiguration,
imageLoaderConfiguration,
tsLoaderConfiguration,
htmlLoaderConfiguration,
svgImportLoaderConfiguration,
fontLoaderConfiguration,
...styleRules(isProduction),
],
},
resolve: {
// This will only alias the exact import "react-native"
alias: {
//NativeModuleInjectionMark-webpack-config-resolve-alias
'react-native$': 'react-native-web',
'shoutem-core$': path.resolve(appDirectory, 'core'),
// Solving the problem in general ( no extension ownership )
'react-native-fast-image': 'react-native-web/dist/exports/Image',
'react-native/Libraries/vendor/emitter/EventEmitter':
'react-native-web/dist/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js',
},
// If you're working on a multi-platform React Native app, web-specific
// module implementations should be written in files using the extension
// `.web.js`.
extensions: ['.web.tsx', '.web.ts', '.tsx', '.ts', '.web.js', '.js'],
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'index.html'),
inject: 'body',
}),
new webpack.DefinePlugin({
__DEV__: JSON.stringify(isDev),
}),
// Reanimated
new webpack.EnvironmentPlugin({ JEST_WORKER_ID: null }),
new webpack.DefinePlugin({ process: { env: {} } }),
// DEV Only
...(isDev ? [new webpack.HotModuleReplacementPlugin()] : []),
// PROD Only
...(isProduction
? [
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1,
}),
new HtmlInlineScriptPlugin(),
]
: []),
],
};
};