Gruntfile.js 525 B

12345678910111213141516171819202122
  1. module.exports = function(grunt) {
  2. 'use strict';
  3. var config = {};
  4. grunt.loadNpmTasks('grunt-contrib-less');
  5. // Project configuration.
  6. grunt.initConfig({
  7. config: config,
  8. less: {
  9. responsive: {
  10. options: {
  11. paths: ['desktop/core/src/desktop/static/desktop/less'],
  12. compress: false
  13. },
  14. files: {
  15. 'desktop/core/src/desktop/static/desktop/css/responsive.css': 'desktop/core/src/desktop/static/desktop/less/responsive.less'
  16. }
  17. }
  18. }
  19. });
  20. };