Skip to content

Commit 0d95de4

Browse files
committed
feat: Add missing re-exports to complete workflow tool sets
- Add 33 re-export files across 6 workflow groups - simulator-workspace: 24 → 29 tools - simulator-project: 20 → 25 tools - device-workspace: 7 → 14 tools - device-project: 3 → 10 tools - macos-workspace: 12 → 17 tools - macos-project: 10 → 15 tools Each workflow now has complete end-to-end tool support including: - Project discovery tools (discover_projs) - Scheme listing tools (list_schems_ws/proj) - Build settings inspection (show_build_set_ws/proj) - Bundle ID extraction (get_app_bundle_id, get_mac_bundle_id) - Clean operations (clean_ws/proj) - Device workflows also include logging tools All tests pass and code is properly linted.
1 parent 405657e commit 0d95de4

39 files changed

Lines changed: 168 additions & 968 deletions
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from utilities to complete workflow
2+
export { default } from '../utilities/clean_proj.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from project-discovery to complete workflow
2+
export { default } from '../project-discovery/discover_projs.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from project-discovery to complete workflow
2+
export { default } from '../project-discovery/get_app_bundle_id.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from project-discovery to complete workflow
2+
export { default } from '../project-discovery/list_schems_proj.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from project-discovery to complete workflow
2+
export { default } from '../project-discovery/show_build_set_proj.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from logging to complete workflow
2+
export { default } from '../logging/start_device_log_cap.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from logging to complete workflow
2+
export { default } from '../logging/stop_device_log_cap.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from utilities to complete workflow
2+
export { default } from '../utilities/clean_ws.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from project-discovery to complete workflow
2+
export { default } from '../project-discovery/discover_projs.js';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Re-export from project-discovery to complete workflow
2+
export { default } from '../project-discovery/get_app_bundle_id.js';

0 commit comments

Comments
 (0)