Skip to content

Commit 7dcbad5

Browse files
author
Manuel Ruck
committed
use package.json version in app.config and bump package.json version to 1.5.13
1 parent 876f351 commit 7dcbad5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { ConfigContext, ExpoConfig } from "expo/config";
22
import { IOSIcons } from "@expo/config-types";
3+
import packageJson from "./package.json";
34
const APP_VARIANT = process.env.APP_VARIANT;
45

56
const getBundleIdentifier = () => {
@@ -65,7 +66,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
6566
name: getAppName(),
6667
slug: "DEMOCRACY",
6768
scheme: "democracy",
68-
version: "1.5.12",
69+
version: packageJson.version,
6970
orientation: "portrait",
7071
icon: getAppIcon(),
7172
userInterfaceStyle: "light",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "democracy",
3-
"version": "1.0.0",
3+
"version": "1.5.13",
44
"main": "expo-router/entry",
55
"packageManager": "[email protected]",
66
"scripts": {

0 commit comments

Comments
 (0)