Skip to content

Commit ac20240

Browse files
committed
fix: address lint formatting issues
1 parent 4d0947a commit ac20240

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/angular/cli/src/utilities/package-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ export class PackageManagerUtils {
188188

189189
private async run(
190190
args: string[],
191-
options: { cwd?: string; silent?: boolean; } = {},
191+
options: { cwd?: string; silent?: boolean } = {},
192192
): Promise<boolean> {
193193
const { cwd = process.cwd(), silent = false } = options;
194194

195195
return new Promise((resolve) => {
196-
const bufferedOutput: { stream: NodeJS.WriteStream; data: Buffer; }[] = [];
196+
const bufferedOutput: { stream: NodeJS.WriteStream; data: Buffer }[] = [];
197197

198198
const childProcess = spawn(`${this.name} ${args.join(' ')}`, {
199199
// Always pipe stderr to allow for failures to be reported

tests/legacy-cli/e2e/setup/100-global-cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const PACKAGE_MANAGER_VERSION = {
1010
'deno': '2.5.6',
1111
};
1212

13-
export default async function() {
13+
export default async function () {
1414
const argv = getGlobalVariable('argv');
1515
if (argv.noglobal) {
1616
return;

0 commit comments

Comments
 (0)