Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 416 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 416 Bytes

grunt-less-bundle

A grunt task for running less-bundle

Example

grunt.initConfig({
  less: {
    main: {
        license: './license.txt',
        version: '<%= pkg.version %>',
        src: './main.less',
        dest: [
            './out.less'
        ]
    }
  },
  pkg: grunt.file.readJSON('package.json')
});

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