diff options
author | Hailey <me@haileyok.com> | 2024-04-16 14:38:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-16 14:38:25 -0700 |
commit | 69d376800619fc88f75252cf7f9b58629193850b (patch) | |
tree | 5511265b4e6e8bd5436b98f6d7d7f0527073548c /src/lib/app-info.ts | |
parent | 046e11de31a9e6ddda32811b1efab52f9c221616 (diff) | |
download | voidsky-69d376800619fc88f75252cf7f9b58629193850b.tar.zst |
Better dist strings for Sentry (#3584)
* better version codes for sentry * use a `.` to follow the same intended format as before * ignore dist build number
Diffstat (limited to 'src/lib/app-info.ts')
-rw-r--r-- | src/lib/app-info.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/app-info.ts b/src/lib/app-info.ts index 83406bf2e..af265bfcb 100644 --- a/src/lib/app-info.ts +++ b/src/lib/app-info.ts @@ -1,5 +1,6 @@ import {nativeApplicationVersion, nativeBuildVersion} from 'expo-application' +export const BUILD_ENV = process.env.EXPO_PUBLIC_ENV export const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development' export const IS_TESTFLIGHT = process.env.EXPO_PUBLIC_ENV === 'testflight' |