-
Notifications
You must be signed in to change notification settings - Fork 54
/
Gruntfile.js
54 lines (51 loc) · 1.63 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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
preserveComments: 'some',
banner: '/*! @description <%= pkg.description %>\n' +
' * @version <%= pkg.version %>\n' +
' * @date <%= grunt.template.today("yyyy-mm-dd") %>\n' +
' * @copyright <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>\n' +
' * <%= pkg.homepage %>\n' +
' */\n'
},
build: {
src: '<%= pkg.name %>.js',
dest: '<%= pkg.name %>.min.js'
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
files: ['consolelog.js', 'consolelog.detailprint.js']
},
watch: {
options: {
livereload: true,
interrupt: true
},
scripts: {
files: ['consolelog.js', 'consolelog.detailprint.js', 'demo/demo.js'],
tasks: ['jshint'],
options: {
spawn: false,
}
},
styles: {
files: ['**/*.less'],
tasks: ['less', 'csslint'],
options: {
spawn: false,
}
}
}
});
// Default task (JS only)
grunt.registerTask('default', ['jshint', 'uglify']);
// Development
grunt.registerTask('dev', ['default', 'watch']);
};