Skip to content

Commit bb51ac2

Browse files
committed
Sass verze - zaklady
1 parent 0afdca8 commit bb51ac2

29 files changed

+3553
-53
lines changed

Gruntfile.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
module.exports = function(grunt) {
2+
3+
const sass = require('node-sass');
4+
25
// Nacteme vsechny grunt tasky a urychlime srandu
36
require("jit-grunt")(grunt);
47

58
grunt.initConfig({
9+
610
less: {
711
default: {
812
files: {
@@ -17,6 +21,16 @@ module.exports = function(grunt) {
1721
}
1822
},
1923

24+
sass: {
25+
options: {
26+
implementation: sass,
27+
sourceMap: true
28+
},
29+
dist: {
30+
"css/style.css": "scss/index.scss"
31+
}
32+
},
33+
2034
postcss: {
2135
options: {
2236
processors: [require("autoprefixer")()]

0 commit comments

Comments
 (0)