forked from localForage/localForage-backbone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
56 lines (52 loc) · 1.74 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
/*global exports:true */
module.exports = exports = function(grunt) {
'use strict';
grunt.initConfig({
concat: {
options: {
separator: '',
},
backbone: {
dest: 'dist/localforage.backbone.js',
options: {
banner:
'/*!\n' +
' localForage Backbone Adapter\n' +
' Version 0.4.0\n' +
' https://github.com/mozilla/localforage-backbone\n' +
' (c) 2014 Mozilla, Apache License 2.0\n' +
'*/\n'
},
src: [
'src/localforage.backbone.js'
]
}
},
uglify: {
backbone: {
files: {
'dist/localforage.backbone.min.js': ['dist/localforage.backbone.js']
}
}
},
jasmine: {
backbone: {
options: {
specs: 'test/**/*.js',
vendor: [
'bower_components/underscore/underscore.js',
'bower_components/backbone/backbone.js',
'bower_components/localforage/dist/localforage.js',
'dist/localforage.backbone.js'
]
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('default', ['build']);
grunt.registerTask('build', ['concat', 'uglify']);
grunt.registerTask('test', ['build', 'jasmine']);
};