Skip to content

Commit d6d0709

Browse files
committed
wip
1 parent 39342af commit d6d0709

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
test_target_name: e2e.esbuild_node24
171171
env:
172172
E2E_SHARD_TOTAL: 1
173-
TESTBRIDGE_TEST_ONLY: tests/basic/{build,rebuild,serve}.ts
173+
TESTBRIDGE_TEST_ONLY: tests/commands/add/add-tailwindcss.ts
174174

175175
e2e-package-managers:
176176
needs: build

packages/angular/cli/src/command-builder/utilities/prettier.ts

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export async function formatFiles(cwd: string, files: Set<string>): Promise<void
5555
}
5656
}
5757

58+
console.log({ prettierCliPath });
5859
if (!prettierCliPath) {
5960
return;
6061
}
@@ -70,12 +71,10 @@ export async function formatFiles(cwd: string, files: Set<string>): Promise<void
7071
return;
7172
}
7273

73-
await execFileAsync(
74-
prettierCliPath,
75-
['--write', '--no-error-on-unmatched-pattern', ...filesToFormat],
76-
{
77-
cwd,
78-
shell: platform() === 'win32',
79-
},
80-
);
74+
console.log({ filesToFormat, cwd });
75+
76+
await execFileAsync(prettierCliPath, ['--write', ...filesToFormat], {
77+
cwd,
78+
shell: platform() === 'win32',
79+
});
8180
}

0 commit comments

Comments
 (0)