1.0.0-alpha.2 • Published 6 years ago

@angular-buddies/build-notes v1.0.0-alpha.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

@angular-buddies/build-notes

Your buddy who notes for you all the informations you may need about your project

Generate complete reports about your project when you need it.

A tool from the Angular Buddies project.

npm.io

Quick Start

  1. Install

npm i -D @angular-buddies/build-notes

  1. Configure
// angular.json or workspace.json

{
  "$schema": "../../node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "projects": {
    "<your-project>": {
      "architect": {
        "<target-name>": {
          "builder": ".:npm",
          "options": {
            "withDev": false,             // true if you want to include devDependencies
            "path": "description.json"    // path to the file to generate
          }
        }
      }
    }
  }
}
  1. Run

With @angular/cli:\ ng run <your-project>:<target-name> options...

With @angular-devkit/architect-cli:\ architect <your-project>:<target-name> options...

Angular Devkit Architect Builders

See builders.json

npm

TODO