-
Notifications
You must be signed in to change notification settings - Fork 79
/
Gruntfile.js
108 lines (95 loc) · 2.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
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
module.exports = function ( grunt ) {
grunt.initConfig( {
copy: {
build: {
expand: true,
cwd: 'src',
src: [ '**', '!less/*' ],
dest: 'build'
}
},
concat: {
options: {
separator: ';',
banner: '// <nowiki>\n'
},
dependencies: {
files: {
'build/modules/core.js': [ 'node_modules/hogan.js/build/gh-pages/builds/2.0.0/hogan-2.0.0.js', 'build/modules/core.js' ]
}
}
},
clean: {
build: {
src: [ 'build' ]
},
styling: {
src: [ 'build/less' ]
}
},
less: {
options: {
cleancss: true
},
files: {
expand: true,
cwd: 'src',
src: [ 'less/*.less' ],
dest: 'build',
ext: '.css'
}
},
autoprefixer: {
build: {
expand: true,
cwd: 'build',
src: [ '**/*.css' ],
dest: 'build'
}
},
cssmin: {
build: {
files: {
'build/afch.css': [ 'build/**/*.css' ]
}
}
},
eslint: {
target: [ 'src/**/*.js', 'contrib/**/*.js', 'tests/**/*.js', 'Gruntfile.js' ]
},
exec: {
jest: {
cmd: '"./node_modules/.bin/jest"'
}
}
} );
grunt.loadNpmTasks( 'grunt-autoprefixer' );
grunt.loadNpmTasks( 'grunt-contrib-clean' );
grunt.loadNpmTasks( 'grunt-contrib-concat' );
grunt.loadNpmTasks( 'grunt-contrib-copy' );
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
grunt.loadNpmTasks( 'grunt-contrib-less' );
grunt.loadNpmTasks( 'grunt-eslint' );
grunt.loadNpmTasks( 'grunt-exec' );
grunt.registerTask(
'lint',
'Tests files for code style and code quality.',
[ 'eslint' ]
);
grunt.registerTask(
'test',
'Runs unit tests as well as checks code style/quality.',
[ 'exec:jest' ]
);
grunt.registerTask(
'styling',
'Compiles LESS files to CSS and minifies them into one file.',
[ 'less', 'autoprefixer', 'cssmin', 'clean:styling' ]
);
grunt.registerTask(
'build',
'Tests files, moves them to the /build directory, and minifies CSS.',
[ 'clean:build', 'test', 'lint', 'copy', 'concat:dependencies', 'styling' ]
);
grunt.registerTask( 'default', [ 'build' ] );
};