-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gruntfile.js
48 lines (46 loc) · 1.05 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
module.exports = function (grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('bower.json'),
uglify: {
options: {
preserveComments: 'some'
},
dist: {
src: '<%= pkg.name %>.js',
dest: '<%= pkg.name %>.min.js'
}
},
concat: {
options: {
process: true
},
dist: {
src: 'src/<%= pkg.name %>.js',
dest: '<%= pkg.name %>.js'
}
},
karma: {
dist: {
configFile: 'karma.conf.js',
browsers: ['PhantomJS']
},
watch: {
configFile: 'karma.conf.js',
singleRun: false,
autoWatch: true
}
},
changelog: {
options: {
github: 'passy/angular-google-staticmaps'
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-conventional-changelog');
grunt.registerTask('default', ['concat', 'uglify']);
grunt.registerTask('test', ['karma:dist']);
};