-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gruntfile.js
96 lines (84 loc) · 1.93 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
/* global module */
module.exports = function (grunt) {
module.require('time-grunt')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
'nice-package': {
all: {
options: {
blankLine: true
}
}
},
jshint: {
'options': {
jshintrc: '.jshintrc'
},
default: {
'src': [ '*.js', 'test/*.js' ]
}
},
sync: {
all: {
options: {
sync: ['author', 'name', 'version', 'private', 'license', 'keywords'],
}
}
},
concat: {
dist: {
src: ['node_modules/js-beautify/js/lib/beautify-html.js', 'index.js'],
dest: 'dist/console.table.js'
}
},
uglify: {
dist: {
files: {
'dist/console.table.min.js': ['dist/console.table.js']
}
}
},
'clean-console': {
all: {
options: {
url: ['index.table', 'index.min.html'],
timeout: 1
}
}
},
usebanner: {
taskName: {
options: {
position: 'top',
banner: '/*! <%= pkg.name %>@<%= pkg.version %> - <%= pkg.description %> ' +
'<%= grunt.template.today("dd-mm-yyyy") %> */',
},
files: {
src: ['dist/console.html.js', 'dist/console.html.min.js']
}
}
},
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['test/*.js']
}
},
watch: {
options: {
atBegin: true
},
all: {
files: ['*.js', 'test/*.js'],
tasks: ['test']
}
}
});
var plugins = module.require('matchdep').filterDev('grunt-*');
plugins.forEach(grunt.loadNpmTasks);
grunt.registerTask('test', ['jshint', 'mochaTest']);
grunt.registerTask('browser', ['sync', 'concat', 'uglify', 'usebanner']);
grunt.registerTask('default', ['deps-ok', 'nice-package', 'test', 'browser']);
};