forked from GEWIS/gewisweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
67 lines (64 loc) · 2.31 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
options: {
loadPath: ['vendor/twbs/bootstrap-sass/assets/stylesheets/']
},
gewis: {
files: {
'public/css/gewis-theme.css': 'public/scss/main.scss'
}
},
styleguide: {
files: {
'public/styleguide/public/styleguide.css': 'public/scss/styleguide.scss'
}
}
},
watch: {
css: {
files: ['public/scss/**'],
tasks: ['css']
},
styleguide: {
files: ['public/scss/**', 'styleguide/template/**'],
tasks: ['styleguide']
}
},
clean: {
styleguide: ['public/styleguide']
},
copy: {
styleguide: {
files: [
//{ expand: true, cwd: 'public/scss', src: 'styleguide.scss', dest: 'public/styleguide/public', filter: 'isFile' },
{ expand: true, cwd: 'vendor/twbs/bootstrap-sass/assets/fonts', src: '**', dest: 'public/styleguide/fonts' }
]
}
},
shell: {
kss: {
command: function () {
return 'kss-node ' + [
'--source public/scss',
'--destination public/styleguide',
'--template styleguide/template',
// '--css public/main.css',
'--css public/styleguide.css',
'--helpers styleguide/template/helpers',
'--title "GEWIS Styleguide"'
].join(' ');
}
}
}
});
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.registerTask('css', ['sass:gewis']);
grunt.registerTask('styleguide', ['clean:styleguide', 'shell:kss', 'copy:styleguide', 'sass:styleguide']);
grunt.registerTask('default', ['css']);
};