forked from easelinc/tourist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
98 lines (88 loc) · 2.33 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
97
98
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
dist: {
src: ['src/**/*.coffee'],
dest: '<%= pkg.name %>.coffee'
}
},
coffee: {
build: {
files: {
'<%= pkg.name %>.js': '<%= pkg.name %>.coffee',
}
},
test: {
expand: true,
cwd: 'test/src/',
src: ['**/*.coffee'],
dest: 'test/lib/',
ext: '.js'
}
},
uglify: {
options: {
banner: '/*! Tourist.js - http://easelinc.github.io/tourist, built <%= grunt.template.today("mm-dd-yyyy") %> */\n'
},
dist: {
files: {
'<%= pkg.name %>.min.js': ['<%= pkg.name %>.js']
}
}
},
watch: {
build: {
files: ['src/**/*.coffee'],
tasks: ['concat', 'coffee:build','uglify'],
options: {
livereload: true,
},
},
test: {
files: ['test/src/**/*.coffee'],
tasks: ['coffee:test'],
options: {
livereload: true,
},
}
},
parallel: {
grunt: {
options: {
grunt: true
},
tasks: ['watch', 'serve']
},
},
jasmine: {
src: '<%= pkg.name %>.js',
options: {
specs: ['test/lib/tourSpec.js', 'test/lib/tip/baseSpec.js', 'test/lib/tip/qtipSpec.js', 'test/lib/tip/bootstrapSpec.js'],
helpers: 'test/lib/**/*Helper.js',
vendor: [
'test/vendor/javascripts/jquery-1.9.1.js',
'test/vendor/javascripts/underscore-1.4.4.js',
'test/vendor/javascripts/backbone-1.0.0.js',
'test/vendor/javascripts/jquery.qtip.js',
'test/vendor/javascripts/jquery-ui-1.10.2.custom.js',
'test/vendor/javascripts/jasmine-jquery.js'
]
}
},
serve: {
options: {
port: 9000
}
}
});
grunt.loadNpmTasks('grunt-parallel');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-serve');
grunt.registerTask('test', ['concat', 'coffee', 'jasmine']);
grunt.registerTask('default', ['concat', 'coffee', 'uglify']);
};