-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gruntfile.js
140 lines (140 loc) · 3.11 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
dist: {
options: {
outputStyle: 'compressed'
},
files: [
{
expand: true,
cwd: 'sass/',
src: ['**/*.scss'],
dest: 'css/',
ext: '.css',
},
],
}
},
spell: {
all: {
src: ['questions.json', 'README.md'],
options: {
ignore: []
}
}
},
jshint: {
all: ['js/**/*.js'],
options: {
reporter: require('jshint-stylish'),
curly: true,
eqeqeq: true,
eqnull: false,
browser: true,
indent: 2,
quotmark: 'single',
unused: false,
ignores: ['node_modules/**/*.js', 'js/build/**/*.js'],
globals: {
jQuery: true
},
},
},
jsonlint: {
sample: {
src: [ '**/*.json' ]
}
},
browserify: {
dist: {
options: {
},
files: {
'js/build/quiz.js': ['js/quiz.js']
},
}
},
uglify: {
dist: {
files:{
'js/build/quiz-min.js': ['js/build/quiz.js']
},
}
},
imagemin: {
static: {
options: {
optimizationLevel: 0,
progressive: true
}
},
dynamic: {
files: [{
expand: true,
cwd: 'img/',
src: ['**/*.{png,jpg,gif}'],
dest: 'img/'
}]
}
},
sassyclean: {
options: {
modules: ['sass/modules/**/*.scss', 'sass/themes/**/*.scss', 'sass/layout/**/*.scss', 'sass/base/**/*.scss'],
buildfiles: ['sass/**/*.scss'],
remove: false,
days: null
},
},
watch: {
css: {
files: ['sass/**/*.scss'],
tasks: ['sass:dist'],
options: {
spawn: false,
livereload: true
},
},
scripts: {
files: ['js/**/*.js'],
tasks: ['jshint','newer:browserify', 'newer:uglify'],
options: {
livereload: true
}
},
// json: {
// files: ['**/*.json'],
// tasks: ['newer:jsonlint'],
// options: {
// spawn: false
// }
// },
images: {
files: ['img/**/*.{png,jpg,gif}'],
tasks: ['newer:imagemin'],
options: {
spawn: false
}
},
livereload: {
files: ['*.html', '*.php', 'js/**/*.{js,json}', 'css/*.css','img/**/*.{png,jpg,jpeg,gif,webp,svg}'],
options: {
livereload: true
}
}
}
});
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-sassyclean');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-imagemin');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-jsonlint');
grunt.loadNpmTasks('grunt-spell');
grunt.registerTask('default',['watch']);
};