mixpanel-react-native 3.0.7 → 3.0.9
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/CHANGELOG.md +24 -0
- package/MixpanelReactNative.podspec +1 -1
- package/Samples/ContextAPIMixpanel/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/Samples/MixpanelDemo/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/Samples/SimpleMixpanel/package-lock.json +15642 -0
- package/Samples/SimpleMixpanel/package.json +5 -2
- package/Samples/SimpleMixpanel/patches/react-native+0.73.0.patch +14 -0
- package/Samples/SimpleMixpanel/yarn.lock +1527 -1147
- package/__tests__/main.test.js +1 -1
- package/android/build.gradle +1 -1
- package/javascript/mixpanel-network.js +1 -1
- package/javascript/mixpanel-queue.js +10 -3
- package/package.json +1 -1
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
"ios": "react-native run-ios",
|
|
8
8
|
"lint": "eslint .",
|
|
9
9
|
"start": "react-native start",
|
|
10
|
-
"test": "jest"
|
|
10
|
+
"test": "jest",
|
|
11
|
+
"postinstall": "patch-package"
|
|
11
12
|
},
|
|
12
13
|
"dependencies": {
|
|
13
14
|
"mixpanel-react-native": "file:../..",
|
|
@@ -27,6 +28,8 @@
|
|
|
27
28
|
"babel-jest": "^29.6.3",
|
|
28
29
|
"eslint": "^8.19.0",
|
|
29
30
|
"jest": "^29.6.3",
|
|
31
|
+
"patch-package": "^8.0.0",
|
|
32
|
+
"postinstall-postinstall": "^2.1.0",
|
|
30
33
|
"prettier": "2.8.8",
|
|
31
34
|
"react-test-renderer": "18.2.0",
|
|
32
35
|
"typescript": "5.0.4"
|
|
@@ -35,4 +38,4 @@
|
|
|
35
38
|
"node": ">=18"
|
|
36
39
|
},
|
|
37
40
|
"packageManager": "yarn@1.22.22"
|
|
38
|
-
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
diff --git a/node_modules/react-native/third-party-podspecs/boost.podspec b/node_modules/react-native/third-party-podspecs/boost.podspec
|
|
2
|
+
index 3950fce..8cd4a8a 100644
|
|
3
|
+
--- a/node_modules/react-native/third-party-podspecs/boost.podspec
|
|
4
|
+
+++ b/node_modules/react-native/third-party-podspecs/boost.podspec
|
|
5
|
+
@@ -10,7 +10,8 @@ Pod::Spec.new do |spec|
|
|
6
|
+
spec.homepage = 'http://www.boost.org'
|
|
7
|
+
spec.summary = 'Boost provides free peer-reviewed portable C++ source libraries.'
|
|
8
|
+
spec.authors = 'Rene Rivera'
|
|
9
|
+
- spec.source = { :http => 'https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.tar.bz2',
|
|
10
|
+
+ # Patched due to issue https://github.com/boostorg/boost/issues/843
|
|
11
|
+
+ spec.source = { :http => 'https://sourceforge.net/projects/boost/files/boost/1.83.0/boost_1_83_0.tar.bz2',
|
|
12
|
+
:sha256 => '6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e' }
|
|
13
|
+
|
|
14
|
+
# Pinning to the same version as React.podspec.
|