We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fec6f69 commit 17fbaedCopy full SHA for 17fbaed
2 files changed
apps/mobile/app.json
@@ -3,7 +3,7 @@
3
"name": "Synk",
4
"slug": "Synk",
5
"scheme": "io.synk.app",
6
- "version": "1.1.3",
+ "version": "1.1.4",
7
"orientation": "portrait",
8
"icon": "./assets/icon.png",
9
"userInterfaceStyle": "automatic",
apps/mobile/metro.config.js
@@ -14,8 +14,8 @@ module.exports = (() => {
14
// Extract existing transformer and resolver
15
const { transformer, resolver } = config;
16
17
- // 1. Watch all files within the monorepo
18
- config.watchFolders = [monorepoRoot];
+ // 1. Watch all files within the monorepo (extend default watchFolders)
+ config.watchFolders = [...(config.watchFolders || []), monorepoRoot];
19
20
// Add SVG transformer configuration
21
config.transformer = {
0 commit comments