-
Notifications
You must be signed in to change notification settings - Fork 39
/
Gruntfile.js
90 lines (79 loc) · 1.86 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
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: ['src/knockout-es5.js'],
options: {
jshintrc: true
}
},
concat: {
dist: {
files: {
'dist/knockout-es5.js': ['lib/weakmap.js', 'src/knockout-es5.js'],
'dist/knockout-es5-clean.js': ['src/knockout-es5.js']
}
}
},
uglify: {
options: {
preserveComments: 'some'
},
build: {
files: {
'dist/knockout-es5.min.js': 'dist/knockout-es5.js',
'dist/knockout-es5-clean.min.js': 'dist/knockout-es5-clean.js'
}
}
},
karma: {
options: {
configFile: 'karma.conf.js'
},
local: {
browsers: [
'Chrome'
],
reporters: [
'dots'
]
},
sauce: {
reporters: [
'dots',
'saucelabs'
],
browsers: [
'sauce_chrome',
//'sauce_chrome_linux',
'sauce_firefox',
//'sauce_firefox_linux',
'sauce_safari',
//'sauce_ie_8',
'sauce_ie_9',
'sauce_ie_10',
'sauce_ie_11'
]
}
},
watch: {
scripts: {
files: ['src/*.js', 'test/*.js'],
tasks: ['build'],
options: {
nospawn: false
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');
grunt.registerTask('test', ['karma:local']);
grunt.registerTask('build', ['concat', 'uglify']);
grunt.registerTask('travis', ['jshint', 'build', 'karma:sauce']);
grunt.registerTask('default', ['jshint', 'build', 'test']);
};