-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
56 lines (47 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
54
55
56
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
connect: {
test: {
port: 8000,
middleware: function(connect) {
return [
mountFolder(connect, 'app')
];
}
}
},
watch: {
files: ['test/spec/**/*.js', 'src/**/*.coffee', 'test/SpecRunner.js'],
tasks: ['exec', 'coffee']
},
coffee: {
compile: {
files: {
'bin/responsive_handler.js': 'src/responsive_handler.coffee',
'bin/ngresponsive.js': 'src/ngresponsive.coffee'
}
}
},
uglify: {
responderjs: {
files: {
'responder.min.js': ['bin/responsive_handler.js'],
'ng-responsive.min.js': ['bin/responsive_handler.js', 'bin/ngresponsive.js']
}
}
},
exec: {
jasmine: {
command: 'phantomjs test/lib/run-jasmine.js http://localhost:8000/jasmine.html',
stdout: true
}
}
});
grunt.loadNpmTasks('grunt-exec');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('default', ['connect:test', 'exec', 'watch']);
}