ng-programmatic
TypeScript icon, indicating that this package has built-in type declarations

1.0.14 • Public • Published

ng-programmatic

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) => {});

/ng-programmatic/

    Package Sidebar

    Install

    npm i ng-programmatic

    Weekly Downloads

    6

    Version

    1.0.14

    License

    MIT

    Unpacked Size

    46.7 kB

    Total Files

    60

    Last publish

    Collaborators

    • tobybessant