-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_grunt.json
50 lines (50 loc) · 1.8 KB
/
config_grunt.json
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
{
"paths": {
"source": {
"js": [
"src/**/*.js"
],
"html": [
"src/**/*.html",
"!src/index.html",
"!src/index_grunt.html"
],
"css": [
"src/css/customtheme.css",
"src/css/styles.css"
],
"vendor": {
"js": [
"bower_components/jquery/dist/jquery.js",
"bower_components/angular/angular.js",
"bower_components/angular-animate/angular-animate.js",
"bower_components/angular-bootstrap/ui-bootstrap.js",
"bower_components/angular-bootstrap/ui-bootstrap-tpls.js",
"bower_components/bootstrap/dist/js/bootstrap.js",
"bower_components/angular-marked/angular-marked.js",
"bower_components/angular-route/angular-route.js",
"bower_components/angular-sanitize/angular-sanitize.js"
],
"css": [
"bower_components/bootstrap/dist/css/bootstrap.min.css",
"bower_components/bootstrap/dist/css/bootstrap-theme.min.css",
"bower_components/font-awesome/css/font-awesome.min.css"
],
"assets": [
"bower_components/bootstrap/dist/fonts/**/*",
"bower_components/font-awesome/fonts/**/*"
]
},
"img": [
"img/**/*"
],
"index": "src/index.html",
"index_grunt": "src/index_grunt.html"
},
"dest": {
"base": "build",
"debug": "build/debug",
"release": "build/release"
}
}
}