Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 493 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 493 Bytes

grunt-angular-jsx

Grunt plugin for angular-jsx.

Installation

$> npm install grunt-angular-jsx

Usage

module.exports = function(grunt) {

  grunt.initConfig({

    angular_jsx: {
      default: {
        files: [{
          src: ['src/*.js'],
          dest: 'build/'
        }]
      }
    }

  };

  grunt.loadNpmTasks('grunt-angular-jsx');

  grunt.registerTask('build', ['angular_jsx']);

};
$> grunt build