Skip to content

Commit 17fbaed

Browse files
committed
fix: metro watchFolders and version bump 1.1.4
1 parent fec6f69 commit 17fbaed

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/mobile/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Synk",
44
"slug": "Synk",
55
"scheme": "io.synk.app",
6-
"version": "1.1.3",
6+
"version": "1.1.4",
77
"orientation": "portrait",
88
"icon": "./assets/icon.png",
99
"userInterfaceStyle": "automatic",

apps/mobile/metro.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ module.exports = (() => {
1414
// Extract existing transformer and resolver
1515
const { transformer, resolver } = config;
1616

17-
// 1. Watch all files within the monorepo
18-
config.watchFolders = [monorepoRoot];
17+
// 1. Watch all files within the monorepo (extend default watchFolders)
18+
config.watchFolders = [...(config.watchFolders || []), monorepoRoot];
1919

2020
// Add SVG transformer configuration
2121
config.transformer = {

0 commit comments

Comments
 (0)