expo-module-template 10.12.4 → 10.12.5

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.
@@ -4,11 +4,12 @@ const path = require('path');
4
4
 
5
5
  const config = getDefaultConfig(__dirname);
6
6
 
7
- // npm v7+ will install ../node_modules/react-native because of peerDependencies.
7
+ // npm v7+ will install ../node_modules/react and ../node_modules/react-native because of peerDependencies.
8
8
  // To prevent the incompatible react-native bewtween ./node_modules/react-native and ../node_modules/react-native,
9
9
  // excludes the one from the parent folder when bundling.
10
10
  config.resolver.blockList = [
11
11
  ...Array.from(config.resolver.blockList ?? []),
12
+ new RegExp(path.resolve('..', 'node_modules', 'react')),
12
13
  new RegExp(path.resolve('..', 'node_modules', 'react-native')),
13
14
  ];
14
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-module-template",
3
- "version": "10.12.4",
3
+ "version": "10.12.5",
4
4
  "description": "ExpoModuleTemplate standalone module",
5
5
  "scripts": {},
6
6
  "keywords": [
@@ -22,5 +22,5 @@
22
22
  "dependencies": {},
23
23
  "devDependencies": {},
24
24
  "peerDependencies": {},
25
- "gitHead": "36402c8b2bc9b63f003c04642d97bf091b35fe16"
25
+ "gitHead": "b5a3db3c8993f3b22e8cba1e2c6005fee57988c2"
26
26
  }