sass.js 604 B

1234567891011121314151617181920212223242526272829
  1. // SASS compiler
  2. 'use strict';
  3. module.exports = function (grunt) {
  4. return {
  5. development: {
  6. options: {
  7. precision: 6,
  8. sourceComments: false,
  9. sourceMap: true,
  10. outputStyle: 'expanded'
  11. },
  12. files: {
  13. 'dist/css/adminlte.css': 'build/scss/AdminLTE.scss'
  14. }
  15. },
  16. production: {
  17. options: {
  18. sourceComments: false,
  19. sourceMap: true,
  20. outputStyle: 'compressed'
  21. },
  22. files: {
  23. 'dist/css/adminlte.min.css': 'build/scss/AdminLTE.scss'
  24. }
  25. }
  26. };
  27. };