Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianGonz97 committed Nov 11, 2024
1 parent c01e72e commit b6d91be
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/cli/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ export const create = new Command('create')
let i = 1;
const initialSteps: string[] = [];
const relative = path.relative(process.cwd(), directory);
const pm =
packageManager ?? detectSync({ cwd: directory })?.name ?? getUserAgent() ?? 'npm';
const pm = packageManager ?? detectSync({ cwd: directory })?.name ?? getUserAgent() ?? 'npm';
if (relative !== '') {
const pathHasSpaces = relative.includes(' ');
initialSteps.push(
Expand Down

0 comments on commit b6d91be

Please sign in to comment.