1.0.0-beta.1 • Published 3 years ago

@ng-builders/semantic-release v1.0.0-beta.1

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

@ng-builders

GitHub npm (scoped with tag) npm (scoped with tag)

The repository contains custom Angular CLI builders for different tasks. Over time, their number will increase.

List of builders

@ng-builders/build:command

The builder to run commands in the terminal

{
  "target": {
    "builder": "@ng-builders/build:command",
    "options": {
      "command": "node -v"
    }
  }
}

@ng-builders/build:stepper

A builder for sequentially launching the commands described in angular.json

{
  "test": {
    "builder": "@ng-builders/build:stepper",
    "options": {
      "targets": {
        "jest": {
          "target": "app:jest",
          "deps": ["server"]
        },
        "server": {
          "target": "app:serve",
          "watch": true
        }
      },
      "steps": ["jest"]
    }
  },
  "jest": {
    "builder": "@nrwl/jest:jest",
    "options": {
      "jestConfig": "apps/app/jest.config.js",
      "tsConfig": "apps/app/tsconfig.spec.json",
      "passWithNoTests": true
    }
  },
  "serve": {
    "builder": "@nrwl/web:dev-server",
    "options": {
      "buildTarget": "app:build"
    }
  }
}

@ng-builders/firebase:deploy

Deploy code and assets to your Firebase project

{
  "deploy": {
    "builder": "@ng-builders/firebase:deploy",
    "options": {}
  }
}