forked from resir014/gnu-social-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
53 lines (44 loc) · 1.01 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
module.exports = function (grunt) {
'use strict';
// load all grunt tasks matching the `grunt-*` pattern
require('load-grunt-tasks')(grunt);
grunt.initConfig({
// Project configuration
pkg: grunt.file.readJSON('package.json'),
// Builds a complete site to the `_site` folder
jekyll: {
serve: {
options: {
bundleExec: true,
serve: true,
config: '_config.yml'
}
}
},
// Lint SCSS files using scss-lint
scsslint: {
files: [
'_sass/*.scss'
],
options: {
bundleExec: true,
config: '.scss-lint.yml',
colorizeOutput: true
}
},
// Lint JS files using XO
xo: {
options: {
quiet: true
},
source: ['js/**/*.js'],
gruntfile: ['Gruntfile.js']
}
});
// test task
grunt.registerTask('test', ['xo', 'scsslint']);
// jekyll task
grunt.registerTask('serve', 'jekyll:serve');
// default task
grunt.registerTask('default', ['test']);
};