forked from cnagel/spring-node.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
91 lines (87 loc) · 2.54 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
83
84
85
86
87
88
89
90
91
var pkgjson = require('./package.json');
var config = {
src : 'src/main/webapp/WEB-INF',
test : 'src/test/webapp/WEB-INF',
dest : 'target/grunt/public',
bower : '.bowercomponents',
};
config.sass = config.src + '/sass';
config.js = config.src + '/javascript';
config.js_test = config.test + '/javascript';
module.exports = function(grunt) {
grunt.loadNpmTasks("grunt-bower-install-simple");
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-sass');
grunt
.initConfig({
config : config,
pkg : config.pkg,
"bower-install-simple" : {
options : {
directory : config.bower,
},
dist : {
options : {
production : true,
},
},
},
concurrent : {
target : {
tasks : [ 'watch', 'karma' ],
options : {
logConcurrentOutput : true
}
}
},
karma : {
dev: {
configFile : '<%= config.js_test %>/karma.conf.js'
}
},
sass : {
dist : {
options : {
outputStyle : 'compressed',
includePaths : [ '<%= config.bower %>/bootstrap-sass/assets/stylesheets/' ],
sourceMap : true
},
files : {
'<%= config.dest %>/styles.css' : '<%= config.sass %>/app.scss'
}
}
},
uglify : {
dist : {
options : {
sourceMap : true,
},
files : {
'<%= config.dest %>/scripts.js' : [
'<%= config.bower %>/modernizr/modernizr.js',
'<%= config.bower %>/jquery/dist/jquery.js',
'<%= config.bower %>/bootstrap-sass/assets/javascripts/bootstrap.js',
'<%= config.js %>/**/*.js', ]
}
}
},
watch : {
js : {
files : [ '<%= config.js %>/**/*.js' ],
tasks : [ 'uglify' ]
},
css : {
files : [ '<%= config.sass %>/**/*.{scss,sass}' ],
tasks : [ 'sass' ]
}
}
});
grunt.registerTask('js', [ 'uglify' ]);
grunt.registerTask('css', [ 'sass' ]);
grunt.registerTask('dist', [ 'bower-install-simple', 'js', 'css' ]);
grunt.registerTask('dev', [ 'concurrent' ]);
grunt.registerTask('default', [ 'dev' ]);
};