-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
48 lines (45 loc) · 1.69 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) {
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-text-replace');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.initConfig({
watch: {
files: [
'./src/**/*.js',
'./spec/**/*.js'
],
tasks: ['concat']
},
concat: {
dist: {
src: [
'./src/bootstrap.js',
'./src/BaseFunction.js',
'./src/Controller.js',
'./src/Exception.js',
'./src/views/binding/Directive.js',
'./src/views/binding/BBSubmitDirective.js',
'./src/views/binding/BBModelDirective.js',
'./src/views/binding/BBClickDirective.js',
'./src/views/View.js',
'./src/views/BaseView.js',
'./src/views/VirtualDOMView.js',
'./src/views/renderers/BaseRenderer.js',
'./src/views/compilers/BaseCompiler.js',
'./src/views/compilers/HandlebarsCompiler.js',
'./src/io/FileLoader.js',
'./src/views/ViewController.js',
'./src/managers/ViewManager.js',
'./src/managers/ViewNotManagedException.js'
],
dest: (function() {
grunt.file.delete('barebone.js');
return 'barebone.js';
})()
}
}
});
grunt.registerTask('default', ['concat']);
grunt.registerTask('watch', ['watch']);
};