angular/dev-app
Joey Perrott 35125c6116 build: force angular cli to run in non-TTY mode for adev and devapp
Force adev and devapp to run in non-TTY mode so it doesn't create a prompt that can't be interacted with. This will initially have no effect,
but the fix is expected to land in CLI to make this work as expected in the next few days.
2025-11-19 08:00:40 -08:00
..
public build: add a dev-app 2025-11-06 09:05:32 -08:00
src build: add a dev-app 2025-11-06 09:05:32 -08:00
angular.json refactor: enable dev-app sourcemaps in prod and include vendor sourcemaps 2025-11-07 10:12:58 -08:00
BUILD.bazel build: force angular cli to run in non-TTY mode for adev and devapp 2025-11-19 08:00:40 -08:00
package.json build: update cross-repo angular dependencies 2025-11-18 15:28:38 -08:00
README.md build: add a dev-app 2025-11-06 09:05:32 -08:00
tsconfig.app.json build: add a dev-app 2025-11-06 09:05:32 -08:00
tsconfig.json build: add a dev-app 2025-11-06 09:05:32 -08:00
tsconfig.spec.json build: add a dev-app 2025-11-06 09:05:32 -08:00

Angular dev-app

For experimentation while developing Angular.

Local Development

For local development, pnpm is the preferred package manager. You can set up a local environment with the following commands:

# Clone Angular repo
git clone https://github.com/angular/angular.git

# Navigate to project directory
cd angular

# Install dependencies
pnpm install

# Build and run local dev server
# NOTE: Initial build will take some time
pnpm dev

FAQs

The build is failing and I'm seeing bazel:bazel failed: missing input file messages.

This is most likely due to a bazel dependency / caching issue. To resolve this, run the following command:

# Try this first
pnpm bazel clean

# If that doesn't work, try it with the expunge flag
pnpm bazel clean --expunge