This repository has been archived by the owner on Apr 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gruntfile.js
82 lines (78 loc) · 1.92 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
/*jshint node:true, es3:false*/
(function() {
'use strict';
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt); // Load grunt tasks automatically
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: ['Gruntfile.js', 'src/**/*.js', 'spec/**/*.js']
},
watch: {
options: {
spawn: false
},
//watches all scripts an rerun hinting and the tests immediately
scripts: {
files: ['<%= jshint.all %>'],
tasks: ['jshint', 'karma:server:run']
}
},
bower: {
tests: {
rjsConfig: 'spec/test-main.js',
options: {
baseUrl: './'
}
}
},
bowerVerify: {
test: {
tasks: ['bower', 'karma:once']
}
},
karma: {
options: {
configFile: 'karma.conf.js'
},
//for a single run of test
once: {
singleRun: true,
},
//for use while developing and in combination with watch task
server: {
background: true,
},
},
copy: {
dist: {
src: 'src/knockout-select2.js',
dest: 'dist/knockout-select2.js'
}
},
uglify: {
dist: {
files: {
'dist/knockout-select2.min.js': ['dist/knockout-select2.js']
}
}
},
nugetpack: {
dist: {
src: 'package.nuspec',
dest: 'nuget/'
}
}
});
//development
grunt.registerTask('dev', ['jshint', 'karma:server', 'watch:scripts']);
//testing
grunt.registerTask('test', ['jshint', 'karma:once']);
grunt.registerTask('test:full', ['jshint', 'bowerVerify']);
//build
grunt.registerTask('build', ['copy', 'uglify']);
//release
grunt.registerTask('pack', ['nugetpack']);
};
})();