Skip to content

Commit e5af3ec

Browse files
committed
Background worker -> Local worker
1 parent 83ddfc7 commit e5af3ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cli-v3/src/dev/devOutput.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ export function startDevOutput(options: DevOutputOptions) {
4141
const baseUrl = `${dashboardUrl}/projects/v3/${config.project}`;
4242

4343
const rebuildStarted = (...[target]: EventBusEventArgs<"rebuildStarted">) => {
44-
logger.log(chalkGrey("○ Rebuilding background worker…"));
44+
logger.log(chalkGrey("○ Rebuilding local worker…"));
4545
};
4646

4747
const buildStarted = (...[target]: EventBusEventArgs<"buildStarted">) => {
48-
logger.log(chalkGrey("○ Building background worker…"));
48+
logger.log(chalkGrey("○ Building local worker…"));
4949
};
5050

5151
const buildFailed = (...[target, error]: EventBusEventArgs<"buildFailed">) => {
@@ -89,7 +89,7 @@ export function startDevOutput(options: DevOutputOptions) {
8989
const runsLink = chalkLink(cliLink("View runs", runsUrl));
9090

9191
const runtime = chalkGrey(`[${worker.build.runtime}]`);
92-
const workerStarted = chalkGrey("Background worker ready");
92+
const workerStarted = chalkGrey("Local worker ready");
9393
const workerVersion = chalkWorker(worker.serverWorker!.version);
9494

9595
logParts.push(workerStarted, runtime, arrow, workerVersion);

0 commit comments

Comments
 (0)