-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuild.config.json
More file actions
44 lines (42 loc) · 1.17 KB
/
Copy pathbuild.config.json
File metadata and controls
44 lines (42 loc) · 1.17 KB
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
{
"apache_root": "/Users/fritz/Sites",
"build_dir": "build",
"compile_dir": "bin",
"app_files": {
"js": [ "src/**/*.js", "!src/**/*.spec.js", "!src/assets/**/*.js" ],
"jsunit": [ "src/**/*.spec.js" ],
"atpl": [ "src/app/**/*.html" ],
"ctpl": [ "src/common/**/*.html" ],
"html": [ "src/index.html" ],
"sass": "src/styles/app.scss"
},
"test_files": {
"js": [
"vendor/angular-mocks/angular-mocks.js"
]
},
"vendor_files": {
"js": [
"vendor/angular/angular.js",
"vendor/angular-bindonce/bindonce.js",
"vendor/angular-route/angular-route.js",
"vendor/angular-resource/angular-resource.js",
"vendor/Blob/Blob.js",
"vendor/fastclick/lib/fastclick.js",
"vendor/FileSaver/FileSaver.js",
"vendor/hammerjs/hammer.js",
"vendor/isMobile/isMobile.js",
"vendor/jquery-custom/jquery.js",
"vendor/jquery-mousewheel/jquery.mousewheel.js",
"vendor/papaparse/papaparse.js",
"vendor/raphael/raphael.js",
"vendor/raphael-group/raphael.group.js",
"vendor/spin.js/spin.js"
],
"css": [
"vendor/normalize-css/normalize.css"
],
"assets": [
]
}
}