-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
51 lines (48 loc) · 1.02 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
'use strict';
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.initConfig({
uglify: {
options: {
mangle: false,
quoteStyle: 1
},
tabletop: {
files: {
'src/tabletop.min.js': ['src/tabletop.js']
}
}
},
connect: {
testing: {
options: {
port: 8080
}
},
secure: {
options: {
port: 8081,
keepalive: true,
protocol: 'https'
}
}
},
// Make sure code styles are up to par and there are no obvious mistakes
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
all: {
src: [
'Gruntfile.js',
'src/{,*/}*.js',
'!src/{,*/}*.min.js',
]
}
}
});
grunt.registerTask('default', ['jshint', 'uglify', 'connect']);
};