grunt-monic

Using Monic with Grunt.

Usage no npm install needed!

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

README

grunt-monic

Using Monic with Grunt.

NPM version Build Status NPM dependencies NPM devDependencies NPM peerDependencies

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']);
};

Options

License

The MIT License.