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

Commit

Permalink
Update getPublishExpConfigAsync.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBacon committed Jan 15, 2022
1 parent 8c26f8e commit a16a843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/xdl/src/project/getPublishExpConfigAsync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
ProjectTarget,
} from '@expo/config';

import { Env, XDLError } from '../internal';
import { Env, ExponentTools, XDLError } from '../internal';

export type PublishOptions = {
releaseChannel?: string;
Expand Down Expand Up @@ -43,7 +43,7 @@ export async function getPublishExpConfigAsync(
if (sdkVersion === 'UNVERSIONED' && !Env.maySkipManifestValidation()) {
throw new XDLError('INVALID_OPTIONS', 'Cannot publish with sdkVersion UNVERSIONED.');
}
// exp.locales = await ExponentTools.getResolvedLocalesAsync(projectRoot, exp);
exp.locales = await ExponentTools.getResolvedLocalesAsync(projectRoot, exp);
return {
exp: {
...exp,
Expand Down

0 comments on commit a16a843

Please sign in to comment.