-
Notifications
You must be signed in to change notification settings - Fork 231
/
Gruntfile.js
171 lines (154 loc) · 4.76 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/**
* Date: 01/05/16
* Author: Shirish Goyal
*/
module.exports = function (grunt) {
var appConfig = grunt.file.readJSON('package.json');
// Load grunt tasks automatically
// see: https://github.com/sindresorhus/load-grunt-tasks
require('load-grunt-tasks')(grunt);
var pathsConfig = function (appName) {
this.app = appName || appConfig.name;
return {
app: this.app,
templates: 'static/templates',
sass: 'static/css',
fonts: 'static/fonts',
images: 'static/images',
js: 'static/js',
port: '8000'
}
};
grunt.initConfig({
paths: pathsConfig(),
pkg: appConfig,
// see: https://github.com/gruntjs/grunt-contrib-watch
watch: {
gruntfile: {
files: ['Gruntfile.js']
},
sass: {
files: ['<%= paths.sass %>/**/*.{scss,sass}'],
tasks: ['sass:dev'],
options: {
atBegin: true,
debounceDelay: 5000,
}
},
livereload: {
files: [
'<%= paths.js %>/**/*.js',
'<%= paths.sass %>/**/*.{scss,sass}',
'<%= paths.templates %>/**/*.html'
],
options: {
spawn: false,
livereload: true
}
},
flake8: {
files: [
'csp/*.py',
'crowdsourcing/middleware/*.py',
'crowdsourcing/permissions/*.py',
'crowdsourcing/serializers/*.py',
'crowdsourcing/validators/*.py',
'crowdsourcing/viewsets/*.py',
'crowdsourcing/*.py'
],
tasks: ['flake8'],
options: {
atBegin: true
}
}
},
flake8: {
options: {
errorsOnly: true,
maxComplexity: 12,
maxLineLength: 119,
ignore: ['E123', 'E128', 'E133', 'E402', 'W503', 'E731', 'W601', 'F403'],
hangClosing: true,
showPep8: true
},
src: [
'csp/*.py',
'crowdsourcing/middleware/*.py',
'crowdsourcing/permissions/*.py',
'crowdsourcing/serializers/*.py',
'crowdsourcing/validators/*.py',
'crowdsourcing/viewsets/*.py',
'crowdsourcing/*.py',
'mturk/*.py'
]
},
// see: https://github.com/sindresorhus/grunt-sass
sass: {
dev: {
options: {
outputStyle: 'compressed',
sourceMap: true,
precision: 10
},
files: {
'<%= paths.sass %>/app.css': '<%= paths.sass %>/app.scss'
}
},
dist: {
options: {
outputStyle: 'compressed',
sourceMap: true,
precision: 10
},
files: {
'<%= paths.sass %>/app.css': '<%= paths.sass %>/app.scss'
}
}
},
//see https://github.com/nDmitry/grunt-postcss
postcss: {
options: {
map: true, // inline sourcemaps
processors: [
require('pixrem')(), // add fallbacks for rem units
require('autoprefixer-core')({
browsers: [
'Android 2.3',
'Android >= 4',
'Chrome >= 20',
'Firefox >= 24',
'Explorer >= 8',
'iOS >= 6',
'Opera >= 12',
'Safari >= 6'
]
}), // add vendor prefixes
require('cssnano')() // minify the result
]
},
dist: {
src: '<%= paths.sass %>/app.css'
}
},
// see: https://npmjs.org/package/grunt-bg-shell
bgShell: {
_defaults: {
bg: true
},
run: {
cmd: 'uwsgi uwsgi-dev.ini'
}
}
});
grunt.registerTask('serve', [
'bgShell:run',
'watch'
]);
grunt.registerTask('build', [
'sass:dist',
'postcss'
]);
grunt.registerTask('default', [
'build'
]);
};