From 31366b3521a1bcb385519686de7ce00767e3bda3 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Sun, 17 Mar 2024 15:01:46 +0100 Subject: [PATCH] refactor: rename default stats file extension to `.jsonl` --- src/utils/stats.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/stats.ts b/src/utils/stats.ts index be3e247..81db280 100644 --- a/src/utils/stats.ts +++ b/src/utils/stats.ts @@ -10,7 +10,7 @@ export type StatsMetadata = { name: string; version: string }; /** The default location of the metro stats file */ export function getStatsPath(projectRoot: string) { - return path.join(projectRoot, '.expo/stats.json'); + return path.join(projectRoot, '.expo/stats.jsonl'); } /** The information to validate if a stats file is compatible with this library version */