-
Notifications
You must be signed in to change notification settings - Fork 177
/
Gruntfile.js
53 lines (48 loc) · 1.24 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
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
},
qunit: {
files: ['test/**/*.html']
},
watch: {
files: '<config:lint.files>',
tasks: 'lint qunit'
},
jshint: {
options: {
curly: false,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: false,
boss: true,
eqnull: true,
browser: true
},
globals: {
jQuery: true
},
src: ['src/**/*.js'],
all: ['Gruntfile.js', 'src/**/*.js', 'test/**/*.js']
},
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-qunit');
// Default task.
grunt.registerTask('default', ['jshint:src', 'qunit']);
// Server Task
grunt.registerTask('serve', 'Serves any directory on given port', function (env) {
var shell = require('shelljs');
var port = grunt.option('port') || 8000;
var dir = grunt.option('dir') || '.';
console.log(['Serving', dir,'on port:', port].join(' '))
shell.exec('cd '+ dir +' && python -m SimpleHTTPServer ' + port);
});
};