0.0.48 • Published 3 years ago

towify-ngc-esbuild-devkit v0.0.48

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Angular Native Builders with Esbuild

Usage

  1. Install package:
npm i ngc-esbuild-devkit -D
  1. Change builder settings in angular.json:
  • For production:
    "architect": {
        "build": {
          "builder": "ngc-esbuild-devkit:build",
          ...
        }
    }
  • For development:
    "architect": {
        "serve": {
          "builder": "ngc-esbuild-devkit:serve",
          ...
        }
    }
  • For testing:
    "architect": {
        "test": {
          "builder": "ngc-esbuild-devkit:test",
          ...
        }
    }