forked from johnpapa/ng-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulp.config.json
44 lines (44 loc) · 1.3 KB
/
gulp.config.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
{
"client": "./src/client/",
"server": "./src/server/",
"htmltemplates": "./src/client/app/**/*.html",
"css": [
"./src/client/content/customtheme.css",
"./src/client/content/styles.css"
],
"js": [
"src/client/app/**/*.module.js",
"src/client/app/**/*.js",
"!src/client/app/**/*.spec.js"
],
"specs": [
"./src/client/app/**/*.spec.js"
],
"nodejs": [
"./src/server/**/*.js"
],
"fonts": [
"./bower_components/font-awesome/fonts/**/*.*"
],
"images": [
"./src/client/content/images/**/*"
],
"build": "./build/",
"report": "./report/",
"vendorjs": [
"./bower_components/jquery/dist/jquery.min.js",
"./bower_components/angular/angular.min.js",
"./bower_components/angular-animate/angular-animate.min.js",
"./bower_components/angular-route/angular-route.min.js",
"./bower_components/angular-sanitize/angular-sanitize.min.js",
"./bower_components/bootstrap/dist/js/bootstrap.min.js",
"./bower_components/toastr/toastr.min.js",
"./bower_components/moment/min/moment.min.js",
"./bower_components/extras.angular.plus/ngplus-overlay.js"
],
"vendorcss": [
"./bower_components/bootstrap/dist/css/bootstrap.min.css",
"./bower_components/font-awesome/css/font-awesome.min.css",
"./bower_components/toastr/toastr.css"
]
}