-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
45 lines (44 loc) · 1.35 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
build: {
src: 'build/<%= pkg.name %>.es2015.js',
dest: 'build/<%= pkg.name %>.min.js'
}
},
jshint: {
files: ['Gruntfile.js', 'src/**/*.js'],
options: {
// options here to override JSHint defaults
globals: {
jQuery: true,
console: true,
module: true,
document: true,
},
esversion: 6
}
},
cssmin: {
target: {
files: [{
expand: true,
cwd: 'src',
src: ['*.css', '!*.min.css'],
dest: 'build',
ext: '.min.css'
}]
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.registerTask('js', ['uglify']);
grunt.registerTask('css', ['cssmin']);
grunt.registerTask('lint', ['jshint']);
};