mirror of https://github.com/juliancwirko/abc.git
Julian Ćwirko
10 years ago
5 changed files with 63 additions and 6978 deletions
@ -0,0 +1,36 @@ |
|||||||
|
'use strict'; |
||||||
|
|
||||||
|
module.exports = function(grunt) { |
||||||
|
|
||||||
|
require('load-grunt-tasks')(grunt); |
||||||
|
|
||||||
|
grunt.initConfig({ |
||||||
|
pkg: grunt.file.readJSON('package.json'), |
||||||
|
|
||||||
|
sass: { |
||||||
|
dist: { |
||||||
|
options: { |
||||||
|
outputStyle: 'compressed' // nested or compressed
|
||||||
|
// sourceMap: true,
|
||||||
|
// imagePath: '',
|
||||||
|
// includePaths: []
|
||||||
|
// more info: https://github.com/sindresorhus/grunt-sass
|
||||||
|
}, |
||||||
|
files: { |
||||||
|
'assets/css/style.css': 'assets/scss/style.scss' |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
|
||||||
|
watch: { |
||||||
|
sass: { |
||||||
|
files: 'assets/scss/**/*.scss', |
||||||
|
tasks: ['sass'] |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
grunt.registerTask('default', ['sass', 'watch']); |
||||||
|
|
||||||
|
}; |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue