react-native-otel 0.1.7 → 0.1.8
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/module/version.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
// Single source of truth for the SDK version string.
|
|
4
|
-
//
|
|
5
|
-
|
|
6
|
-
export const SDK_VERSION = require('../package.json').version;
|
|
4
|
+
// This is updated automatically by the release workflow when package.json is bumped.
|
|
5
|
+
export const SDK_VERSION = '0.1.8';
|
|
7
6
|
//# sourceMappingURL=version.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SDK_VERSION"
|
|
1
|
+
{"version":3,"names":["SDK_VERSION"],"sourceRoot":"../../src","sources":["version.ts"],"mappings":";;AAAA;AACA;AACA,OAAO,MAAMA,WAAW,GAAG,OAAO","ignoreList":[]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION
|
|
1
|
+
export declare const SDK_VERSION = "0.1.8";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/version.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/version.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,UAAU,CAAC"}
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
1
|
// Single source of truth for the SDK version string.
|
|
2
|
-
//
|
|
3
|
-
|
|
4
|
-
export const SDK_VERSION: string = (
|
|
5
|
-
require('../package.json') as { version: string }
|
|
6
|
-
).version;
|
|
2
|
+
// This is updated automatically by the release workflow when package.json is bumped.
|
|
3
|
+
export const SDK_VERSION = '0.1.8';
|