forked from tmijs/tmi.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
41 lines (39 loc) · 1.16 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
jshint: {
all: ["gruntfile.js", "index.js"],
options: {
curly: true,
eqeqeq: true,
eqnull: true,
browser: true
}
},
browserify: {
dist: {
files: {
"dist/tmi.js": ["index.js", "/lib/*.js"]
},
options: {
exclude: ["irc", "cron", "locallydb", "request"],
ignore: ["irc", "cron", "locallydb", "request"]
}
}
},
uglify: {
my_target: {
files: {
"dist/tmi.min.js": ["dist/tmi.js"]
}
}
}
});
// Load the plugin that provides the tasks.
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks("grunt-browserify");
// Default task(s).
grunt.registerTask("default", ["jshint", "browserify", "uglify"]);
};