@mostly-good-metrics/react-native 0.3.2 → 0.3.3
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/lib/commonjs/index.js +1 -1
- package/lib/module/index.js +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/lib/commonjs/index.js
CHANGED
|
@@ -8,7 +8,7 @@ var _reactNative = require("react-native");
|
|
|
8
8
|
var _javascript = require("@mostly-good-metrics/javascript");
|
|
9
9
|
var _storage = require("./storage");
|
|
10
10
|
/** SDK version for metrics headers */
|
|
11
|
-
const SDK_VERSION = '0.3.
|
|
11
|
+
const SDK_VERSION = '0.3.3';
|
|
12
12
|
// Use global to persist state across hot reloads
|
|
13
13
|
const g = globalThis;
|
|
14
14
|
|
package/lib/module/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { MostlyGoodMetrics as MGMClient, SystemEvents, SystemProperties } from '
|
|
|
3
3
|
import { AsyncStorageEventStorage, persistence, getStorageType } from './storage';
|
|
4
4
|
|
|
5
5
|
/** SDK version for metrics headers */
|
|
6
|
-
const SDK_VERSION = '0.3.
|
|
6
|
+
const SDK_VERSION = '0.3.3';
|
|
7
7
|
// Use global to persist state across hot reloads
|
|
8
8
|
const g = globalThis;
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mostly-good-metrics/react-native",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "React Native SDK for MostlyGoodMetrics analytics",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"registry": "https://registry.npmjs.org/"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@mostly-good-metrics/javascript": "^0.4.
|
|
47
|
+
"@mostly-good-metrics/javascript": "^0.4.3"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@react-native-async-storage/async-storage": "^1.21.0",
|
package/src/index.ts
CHANGED
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
import { AsyncStorageEventStorage, persistence, getStorageType } from './storage';
|
|
12
12
|
|
|
13
13
|
/** SDK version for metrics headers */
|
|
14
|
-
const SDK_VERSION = '0.3.
|
|
14
|
+
const SDK_VERSION = '0.3.3';
|
|
15
15
|
|
|
16
16
|
export type { MGMConfiguration, EventProperties };
|
|
17
17
|
|