grunt-mean-less

Compile mean less files.

Usage no npm install needed!

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

README

grunt-mean-compass

Compile mean.io less files.

lessGrunt will locate all the .less files inside the packages and will compile them.

For example:

packages/custom/pages/assets/less/page.less

will compile into:

packages/custom/pages/assets/css/page.css

Getting Started

This plugin requires Grunt ~0.4.5, Grant-contrib-less ~1.0.0, and using Mean.io

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-mean-compass --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-mean-less');

The "meanLess" task

Overview

In your project's Gruntfile, add a section named meanLess to the data object passed into grunt.initConfig().

grunt.initConfig({
  meanLess: {
    options: {
      // Task-specific compass options go here. 
    },
    src: [] //glob files
  },
});

Options

See options as described in Grunt Less

Usage Examples

Default Options

grunt.initConfig({
  mean_less: {
    options: {},
    files: ['!bower_components/**', '!packages/contrib/**', 'packages/**/public/**/*.less'],
  },
});

Custom Options

In this example, custom options are used to add the grunt-compass option of sourcemap.

grunt.initConfig({
  mean_less: {
    options: {
      sourcemap: true
    },
    files: ['!bower_components/**', '!packages/contrib/**', 'packages/**/public/**/*.less'],
  },
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(0.1.2) bug fixes (0.1.0) initial release