Skip to content

Configuration-as-code implementation for configuring and running Angular CLI commands. Primarily designed for use within a taskrunner framework.

License

Notifications You must be signed in to change notification settings

tobybessant/ng-programmatic

Repository files navigation

Azure DevOps builds Azure DevOps coverage npm

Fully typed programmatic interface for configuring and running Angular CLI commands. Primarily designed for use with taskrunners such as Gulp, but could easily be used anywhere.

Currently supports:

  • ng build
  • ng lint
  • ng test
  • ng serve

Install

$ npm i ng-programmatic

Usage

import { Ng, NgBuild } from "ng-programmatic";

// --- Assign args via constructor.
const ngBuild: NgBuild = Ng.Build({ aot: true });

// --- Assign args in bulk, will clear any existing args by default.
ngBuild.setArgs({
  baseHref: "./",
  configuration: "production"
});

// --- Assign args in bulk, with optional merge parameter to keep any existing arguments set.
ngBuild.setArgs({ aot: false }, true);

// --- Assign args individually.
ngBuild
  .setArg("aot", false)
  .setArg("baseHref", "src/")
  .setArg("configuration", "development");

// --- Get current command string.
console.log(ngBuild.toString());
// => `ng build --aot=false --baseHref=src/ --configuration=development`

// --- Run the command.
ngBuild.run().then((result) => {});

About

Configuration-as-code implementation for configuring and running Angular CLI commands. Primarily designed for use within a taskrunner framework.

Resources

License

Stars

Watchers

Forks