grunt-ng-build

ngbuild grunt plugin

Usage no npm install needed!

<script type="module">
  import gruntNgBuild from 'https://cdn.skypack.dev/grunt-ng-build';
</script>

README

GRUNT-NGBUILD

Installation

npm install grunt-ng-build

Usage

module.exports = function (grunt) {

    grunt.initConfig({
        ngbuild: {
            build: {
                src: ['app.js'],
                dest: 'build/app.js'
            }
        }
    });

    grunt.loadNpmTasks('grunt-ng-build');

    grunt.registerTask('default', ['ngbuild']);

};