-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
40 lines (38 loc) · 1.06 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
module.exports = function(grunt) {
var src = ['src/backbone-viewport.js'],
banner = '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;\n' +
'* Licensed <%= _.map(pkg.licenses, function(l) { return l.type; }).join(", ") %>\n' +
'*/\n';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: banner
},
build: {
src: src,
dest: 'dist/backbone-viewport.min.js'
}
},
concat: {
options: {
banner: banner
},
dist: {
src: src,
dest: 'dist/backbone-viewport.js'
}
},
qunit: {
all: ['test/*.html']
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.registerTask('build', ['concat', 'uglify']);
grunt.registerTask('default', ['build', 'qunit']);
};