Socket
Socket
Sign inDemoInstall

@angular-devkit/architect

Package Overview
Dependencies
27
Maintainers
2
Versions
658
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-devkit/architect

Angular Build Facade


Version published
Maintainers
2
Weekly downloads
4,100,949
decreased by-6.43%

Weekly downloads

Package description

What is @angular-devkit/architect?

The @angular-devkit/architect package is a tooling and scaffolding library for Angular projects that provides an API to perform complex workflows and build steps in a scalable way. It is used to define builders that can execute tasks like building, serving, and testing Angular applications.

What are @angular-devkit/architect's main functionalities?

Running Builders

This feature allows you to run builders which are functions that can perform a specific task like building or serving an application. The code sample demonstrates how to load and run a builder using the Architect class.

const architect = new Architect(workspace); architect.loadBuilder(info).then(builder => { const run = builder.run(builderConfig); });

Creating Custom Builders

This feature enables the creation of custom builders. The code sample shows how to create a simple custom builder that always succeeds.

import { BuilderOutput, createBuilder } from '@angular-devkit/architect'; export default createBuilder<any, BuilderOutput>((options, context) => { // Custom builder logic here return { success: true }; });

Handling Build Targets

This feature is about scheduling and running builders associated with specific targets defined in the Angular workspace configuration. The code sample illustrates how to schedule a build target.

const target = { project: 'example', target: 'build' }; architect.scheduleTarget(target).then(builderRun => { // Use the result of the builder run });

Other packages similar to @angular-devkit/architect

Readme

Source

Angular Build Facade

WIP

Keywords

FAQs

Last updated on 25 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc