-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
99 lines (76 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
"use strict";
module.exports = function( grunt ) {
grunt.initConfig({
// Config variable paths
config: {
// Project paths
dev: 'assets/',
build: 'build/'
},
// SASS _______________________________________________________________________
sass: {
// Dev
dev: {
options: {
style: 'compressed',
noCache: true
},
files: {
'<%= config.build %>css/main.min.css':
'<%= config.dev %>scss/main.scss'
}
}
},
// JS Hint ___________________________________________________________________
jshint: {
// Project files
dev: ['<%= config.dev %>js/tabs.js',
'<%= config.dev %>js/accordion.js'],
options: {
globals: {
jQuery: true,
reporter: require('jshint-stylish')
}
}
},
// WATCH ______________________________________________________________________
watch: {
// PROJECT TASKS
// Run SASS task for .scss files
sass_dev: {
files: [
'<%= config.dev %>scss/**/*.scss',
'<%= config.dev %>scss/*.scss'
],
tasks: ['sass:dev'],
},
// Run JS hint task for .js files
js_dev: {
files: ['<%= config.dev %>js/*.js'],
tasks: ['jshint']
},
// Update :)
livereload: {
options: { livereload: true },
files: [
// Project files
'*.html',
'assets/js/tabs.js',
'assets/js/accordion.js',
'<%= config.build %>css/main.min.css'
],
},
}
});
// Load plugins
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
// Grunt tasks
// CSS
grunt.registerTask( 'css', [ 'sass' ] );
// JS
grunt.registerTask( 'js', [ 'jshint'] );
// Watch
grunt.registerTask( 'live', [ 'watch' ] );
};