Skip to content

Commit 6e09add

Browse files
author
Test
committed
chore: move mobile app to top level
Change-Id: Id66bb660223ccbc7fbf7c306d4f1de96f0e7e24c Signed-off-by: Test <test@example.com>
1 parent 3a7523d commit 6e09add

File tree

104 files changed

+19
-34
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+19
-34
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@ test_hot_reload.sh
118118
# mdBook auto-generated assets
119119
docs/theme/pagetoc.css
120120
docs/theme/pagetoc.js
121-
apps/mobile/.expo/
121+
mobile/.expo/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ endif
224224

225225
typecheck-react-native: ## Run TypeScript type checking for React Native app
226226
@echo "Type checking React Native app..."
227-
@cd apps/mobile && bunx tsc --noEmit 2>&1 | grep -E "^(src/|app/|Type checking)" || echo "✓ No errors in React Native app"
227+
@cd mobile && bunx tsc --noEmit 2>&1 | grep -E "^(src/|app/|Type checking)" || echo "✓ No errors in React Native app"
228228

229229
check-deadcode: node_modules/.installed ## Check for potential dead code (manual only, not in static-check)
230230
@echo "Checking for potential dead code with ts-prune..."

apps/mobile/ios/cmuxmobile.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 7 deletions
This file was deleted.

apps/mobile/ios/cmuxmobile.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

Lines changed: 0 additions & 8 deletions
This file was deleted.

fmt.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
.PHONY: fmt fmt-check fmt-prettier fmt-prettier-check fmt-shell fmt-shell-check fmt-nix fmt-nix-check fmt-python fmt-python-check
77

88
# Centralized patterns - single source of truth
9-
PRETTIER_PATTERNS := 'src/**/*.{ts,tsx,json}' 'apps/mobile/**/*.{ts,tsx,json}' 'tests/**/*.ts' 'docs/**/*.md' 'package.json' 'tsconfig*.json' 'README.md'
9+
PRETTIER_PATTERNS := 'src/**/*.{ts,tsx,json}' 'mobile/**/*.{ts,tsx,json}' 'tests/**/*.ts' 'docs/**/*.md' 'package.json' 'tsconfig*.json' 'README.md'
1010
SHELL_SCRIPTS := scripts
1111
PYTHON_DIRS := benchmarks
1212

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33
testEnvironment: "node",
44
testMatch: [
55
"<rootDir>/src/**/*.test.ts",
6-
"<rootDir>/apps/mobile/src/**/*.test.ts",
6+
"<rootDir>/mobile/src/**/*.test.ts",
77
"<rootDir>/tests/**/*.test.ts",
88
],
99
collectCoverageFrom: [
Lines changed: 2 additions & 2 deletions
File renamed without changes.

0 commit comments

Comments
 (0)