Skip to content

Commit

Permalink
fix(expo): reuse already determined format
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez committed Aug 17, 2023
1 parent a55a4ee commit 89f5936
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,18 @@ export async function normalizeOptions(
host: Tree,
options: Schema
): Promise<NormalizedSchema> {
// TODO(leo): uncomment things below
const {
projectName: appProjectName,
names: projectNames,
projectRoot: appProjectRoot,
// projectNameAndRootFormat,
projectNameAndRootFormat,
} = await determineProjectNameAndRootOptions(host, {
name: options.name,
projectType: 'application',
directory: options.directory,
projectNameAndRootFormat: options.projectNameAndRootFormat,
});
// options.projectNameAndRootFormat = projectNameAndRootFormat;
options.projectNameAndRootFormat = projectNameAndRootFormat;

const { className } = names(options.name);
const parsedTags = options.tags
Expand Down

0 comments on commit 89f5936

Please sign in to comment.