Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

[expo-cli] change trackingCtx -> trackingContext #2560

Merged
merged 1 commit into from
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/expo-cli/src/commands/eas-build/build/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export type BuildMetadata = {
* Tracking context
* It's used to track build process across different Expo services and tools.
*/
trackingCtx: TrackingContext;
trackingContext: TrackingContext;
};

async function collectMetadata<T extends Platform>(
Expand All @@ -65,7 +65,7 @@ async function collectMetadata<T extends Platform>(
workflow: ctx.buildProfile.workflow,
credentialsSource,
sdkVersion: ctx.commandCtx.exp.sdkVersion,
trackingCtx: ctx.trackingCtx,
trackingContext: ctx.trackingCtx,
};
}

Expand Down