-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.config.js
60 lines (50 loc) · 952 Bytes
/
build.config.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
module.exports = {
build_dir: 'build',
compile_dir: 'dist',
deploy_command: '~/google_appengine/appcfg.py update .',
app_files: {
factions: [
'src/app/factions/**/*.json'
],
grunt: [
'Gruntfile.js',
'build.config.js'
],
html: [
'src/index.html'
],
js: [
'src/**/*.js',
'!src/**/*.spec.js',
'!src/assets/**/*.js'
],
js_unit: [
'src/**/*.spec.js'
],
less: [
'src/less/app.less'
],
tpl_app: [
'src/app/**/*.tpl.html'
],
tpl_common: [
'src/common/**/*.tpl.html'
]
},
test_files: {
js: [
'bower_components/angular-mocks/angular-mocks.js'
]
},
vendor_files: {
js: [
'bower_components/angular/angular.js',
'bower_components/angular-bootstrap/ui-bootstrap-tpls.js',
'bower_components/angular-route/angular-route.js'
],
css: [
],
assets: [
]
}
};