Skip to content

Commit 67670b6

Browse files
clydinangular-robot[bot]
authored andcommitted
fix(@angular-devkit/build-angular): pass listening port in result for esbuild dev server
The deprecated protractor builder requires that the result object from a development server provide the port used to access the application if the port is not the default (4200). The newly introduced esbuild development server will now provide the port when available.
1 parent ce46eca commit 67670b6

File tree

1 file changed

+4
-1
lines changed
  • packages/angular_devkit/build_angular/src/builders/dev-server

1 file changed

+4
-1
lines changed

packages/angular_devkit/build_angular/src/builders/dev-server/vite-server.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import type { BuilderContext } from '@angular-devkit/architect';
1010
import type { json } from '@angular-devkit/core';
1111
import assert from 'node:assert';
1212
import { BinaryLike, createHash } from 'node:crypto';
13+
import type { AddressInfo } from 'node:net';
1314
import path from 'node:path';
1415
import { InlineConfig, ViteDevServer, createServer, normalizePath } from 'vite';
1516
import { buildEsbuildBrowser } from '../browser-esbuild';
@@ -51,6 +52,7 @@ export async function* serveWithVite(
5152
)) as json.JsonObject & BrowserBuilderOptions;
5253

5354
let server: ViteDevServer | undefined;
55+
let listeningAddress: AddressInfo | undefined;
5456
const outputFiles = new Map<string, OutputFileRecord>();
5557
const assets = new Map<string, string>();
5658
// TODO: Switch this to an architect schedule call when infrastructure settings are supported
@@ -136,13 +138,14 @@ export async function* serveWithVite(
136138
server = await setupServer(serverOptions, outputFiles, assets);
137139

138140
await server.listen();
141+
listeningAddress = server.httpServer?.address() as AddressInfo;
139142

140143
// log connection information
141144
server.printUrls();
142145
}
143146

144147
// TODO: adjust output typings to reflect both development servers
145-
yield { success: true } as unknown as DevServerBuilderOutput;
148+
yield { success: true, port: listeningAddress?.port } as unknown as DevServerBuilderOutput;
146149
}
147150

148151
await server?.close();

0 commit comments

Comments
 (0)