feat: Add auto update functionality (#4686)

This commit is contained in:
Gal Zahavi
2025-07-28 17:56:52 -07:00
committed by GitHub
parent 83c4dddb7e
commit 871e0dfab8
12 changed files with 1023 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { EventEmitter } from 'events';
/**
* A shared event emitter for application-wide communication
* between decoupled parts of the CLI.
*/
export const updateEventEmitter = new EventEmitter();