-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
96 lines (92 loc) · 2.79 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
module.exports = function (grunt) {
'use strict';
// Middleware for directory listing
var mountFolder = function (connect, point) {
var path = require('path');
console.log(path.resolve(point));
return connect['static'](path.resolve(point));
};
// Project configuration
grunt.initConfig({
connect: {
options: {
port: 9009,
// change this to '0.0.0.0' to listen to all interfaces
hostname: 'localhost'
},
livereload: {
options: {
middleware: function (connect, options) {
return [
require('connect-livereload')({
port: 33390
}),
mountFolder(connect, options.base)
];
}
}
}
},
open: {
connect: {
path: 'http://localhost:9009'
}
},
watch: {
options: {
debounceDelay: 200
},
src: {
files: ['src/**/*', '*.html'],
options: {
livereload: 33390
}
},
test: {
files: ['src/**/*', 'test/**/*'],
tasks: ['jshint', 'jasmine:requirejs']
},
grunt: {
files: ['Gruntfile.js'],
tasks: ['jshint:gruntfile']
}
},
jshint : {
files : ['src/**/*.js', 'test/**/*.js' ],
gruntfile: ['Gruntfile.js'],
options : {
jshintrc: '.jshintrc'
}
},
jasmine: {
requirejs: {
src: 'src/js/**/*.js',
options: {
specs: 'test/js/**/*Spec.js',
keepRunner: false,
template: require('grunt-template-jasmine-requirejs'),
templateOptions: {
requireConfigFile: 'src/js/main.js',
requireConfig: {
baseUrl: 'src/js/'
}
}
}
}
},
requirejs: {
compile: {
options: require('./requirejs-options')
}
}
});
// load all grunt tasks matching the `grunt-*` pattern, exclude `grunt-template-jasmine-requirejs`
require('load-grunt-tasks')(grunt, {pattern: ['grunt-*', '!grunt-template-jasmine-requirejs']});
grunt.registerTask('default', [
'jshint',
//'jasmine:requirejs',
'connect:livereload',
'open',
'watch'
]);
};