Skip to content

Commit

Permalink
refactor: rename default stats file extension to .jsonl
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric committed Mar 17, 2024
1 parent 9b1908d commit c53885e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit c53885e

Please sign in to comment.