-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gruntfile.js
82 lines (76 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
/*global exports:true */
module.exports = exports = function(grunt) {
'use strict';
var pkg = grunt.file.readJSON('package.json');
var sourceFiles = [
'Gruntfile.js',
'src/*.js',
'test/*.js',
'examples/*.js'
];
grunt.initConfig({
concat: {
options: {
separator: ''
},
backbone: {
dest: 'dist/localforage.backbone.js',
options: {
banner:
'/*!\n' +
' localForage Backbone Adapter\n' +
' Version ' + pkg.version + '\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'
]
}
}
},
watch: {
src: {
files: 'src/**/*.js',
tasks: ['jshint', 'jscs', 'test']
},
test: {
files: 'test/**/*.js',
tasks: ['jshint', 'jscs', 'jasmine']
}
},
jscs: {
source: sourceFiles
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
source: sourceFiles
}
});
require('load-grunt-tasks')(grunt, {pattern: 'grunt-*'});
grunt.registerTask('default', ['build', 'watch']);
grunt.registerTask('build', ['jshint', 'jscs', 'concat', 'uglify']);
grunt.registerTask('test', ['build', 'jasmine']);
};