From 90f550feeac5761a2152b07c2690aabe23a34989 Mon Sep 17 00:00:00 2001 From: Junseo Oh <40460655+outsung@users.noreply.github.com> Date: Thu, 14 Dec 2023 22:48:31 +0900 Subject: [PATCH] fix: `@expo` changed to `expo` in babel-loader config in webpack config templates (#470) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: `@expo` changed to `expo` in babel-loader config in webpack config templates * fix: `@expo` changed to `expo` in webpack config in TesterApp --------- Co-authored-by: RafaƂ Zakrzewski --- packages/TesterApp/webpack.config.mjs | 2 +- templates/webpack.config.cjs | 2 +- templates/webpack.config.mjs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/TesterApp/webpack.config.mjs b/packages/TesterApp/webpack.config.mjs index 1eb0ba601..fa357e10f 100644 --- a/packages/TesterApp/webpack.config.mjs +++ b/packages/TesterApp/webpack.config.mjs @@ -160,7 +160,7 @@ export default (env) => { /node_modules(.*[/\\])+@react-native/, /node_modules(.*[/\\])+@react-navigation/, /node_modules(.*[/\\])+@react-native-community/, - /node_modules(.*[/\\])+@expo/, + /node_modules(.*[/\\])+expo/, /node_modules(.*[/\\])+pretty-format/, /node_modules(.*[/\\])+metro/, /node_modules(.*[/\\])+abort-controller/, diff --git a/templates/webpack.config.cjs b/templates/webpack.config.cjs index 0364495d1..6bea0c74e 100644 --- a/templates/webpack.config.cjs +++ b/templates/webpack.config.cjs @@ -153,7 +153,7 @@ module.exports = (env) => { /node_modules(.*[/\\])+@react-native/, /node_modules(.*[/\\])+@react-navigation/, /node_modules(.*[/\\])+@react-native-community/, - /node_modules(.*[/\\])+@expo/, + /node_modules(.*[/\\])+expo/, /node_modules(.*[/\\])+pretty-format/, /node_modules(.*[/\\])+metro/, /node_modules(.*[/\\])+abort-controller/, diff --git a/templates/webpack.config.mjs b/templates/webpack.config.mjs index d582ea4ad..27ec8a366 100644 --- a/templates/webpack.config.mjs +++ b/templates/webpack.config.mjs @@ -155,7 +155,7 @@ export default (env) => { /node_modules(.*[/\\])+@react-native/, /node_modules(.*[/\\])+@react-navigation/, /node_modules(.*[/\\])+@react-native-community/, - /node_modules(.*[/\\])+@expo/, + /node_modules(.*[/\\])+expo/, /node_modules(.*[/\\])+pretty-format/, /node_modules(.*[/\\])+metro/, /node_modules(.*[/\\])+abort-controller/,