Skip to content

MonicBuilder/grunt-monic

Repository files navigation

grunt-monic

Using Monic with Grunt.

NPM version Build Status

Install

npm install monic grunt-monic --save-dev

Usage

Gruntfile.js

module.exports = function (grunt) {
  grunt.initConfig({
    monic: {
      compile: {
        options: {
          flags: {
            ie: true
          }
        },

        files: {
          'lib.js': ['source/core.js']
        }
      }
    }
  });

  grunt.loadNpmTasks('grunt-monic');
  grunt.registerTask('default', ['monic']);
};

The MIT License.