You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Underlying Turbo commands used by these wrappers:
144
+
145
+
```bash
146
+
pnpm exec turbo run turbo:build --filter=./packages/**
147
+
pnpm exec turbo run turbo:test --filter=./packages/**
148
+
pnpm exec turbo run turbo:lint --filter=./packages/**
149
+
```
150
+
151
+
### Metro Pipeline Parity
93
152
94
153
- Build pkg + metro:
95
154
@@ -100,13 +159,13 @@ pnpm run build:pkg
100
159
- Metro tests:
101
160
102
161
```bash
103
-
pnpm exec turbo run test --filter=@module-federation/metro*
162
+
pnpm exec turbo run test --filter=@module-federation/metro --filter=@module-federation/metro-plugin-rnef --filter=@module-federation/metro-plugin-rnc-cli
104
163
```
105
164
106
165
- Metro lint:
107
166
108
167
```bash
109
-
pnpm exec turbo run lint --filter=@module-federation/metro*
168
+
pnpm exec turbo run lint --filter=@module-federation/metro --filter=@module-federation/metro-plugin-rnef --filter=@module-federation/metro-plugin-rnc-cli
110
169
```
111
170
112
171
### E2E Parity via Local CI Runner
@@ -149,7 +208,7 @@ Run the smallest deterministic set that matches the change type.
149
208
| --- | --- | --- |
150
209
| Docs-only (no code/config behavior change) | none by default; run only checks explicitly requested by user |`pnpm exec prettier --check .`|
| Metro package code (`tag:type:metro`) | metro parity set (build pkg+metro, affected metro tests, metro lint) | E2E metro job via `ci:local` when relevant |
211
+
| Metro package code (`packages/metro-*`) | metro parity set (build pkg+metro, metro tests, metro lint) | E2E metro job via `ci:local` when relevant |
153
212
| App/E2E-related changes in `apps/*` or E2E scripts/workflows |`pnpm run ci:local --only=<matching-job>`| additional related `ci:local` jobs |
154
213
| Release workflow/release tooling changes | release sanity commands only, no publish | package/metro builds if impacted |
0 commit comments