-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgruntConfig.js
More file actions
37 lines (32 loc) · 853 Bytes
/
gruntConfig.js
File metadata and controls
37 lines (32 loc) · 853 Bytes
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
module.exports = {
build_dir: 'build',
compile_dir: 'bin',
server_webinf: '../server/src/main/webapp',
nojs_sentence: 'Please, activate javascript in your browser !',
app_files: {
favicon: 'app/assets/img/favicon.png',
first: [ 'app/src/app.js' ],
js: [ 'app/src/**/*.js' ],
tpl: [ 'app/src/**/*.tpl.html' ],
html: [ 'app/index.tpl.html' ],
stylesheet: ['app/stylesheets/reset.css','app/stylesheets/iconfont.css', 'app/stylesheets/**/*.css'],
assets: ['app/assets/**/*']
},
test_files: {
js: [
'test/**/*.js'
]
},
vendor_files: {
js: [
'app/vendor/underscore/underscore.js',
'app/vendor/angular/angular.js',
'app/vendor/angular-route/angular-route.js',
'app/vendor/angular-resource/angular-resource.js'
],
css: [
],
assets: [
]
},
};