-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathconfig.js
174 lines (162 loc) · 4.33 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
var assign = require('lodash.assign');
/*
|--------------------------------------------------------------------------
| BUILD CONFIGURATION
|--------------------------------------------------------------------------
|
| All configurations concerning the build go here.
|
| Note that you can always use an array for src, to be more
| specific or to exclude files.
|
| TypeScript Lint Configuration:
| - tslint.json
|
| TypeScript Configutation:
| - tsconfig.json
|
| Reserved:
| - config.env
| - config.mode
| - config.build
|
*/
var config = config || {};
// Use the build timestamp to prevent browser caching of new versions
config.buildTimestamp = new Date().valueOf();
/*
|--------------------------------------------------------------------------
| App Base Href
|--------------------------------------------------------------------------
|
| Set the <base> href attribute and the base for
| the application itself (e.g. routing)
|
*/
config.htmlBaseHref = '/';
config.appBaseHref = '/';
/*
|--------------------------------------------------------------------------
| Source and Distribution Location
|--------------------------------------------------------------------------
|
| Define the location of the source and distribution folder.
|
*/
config.src = './src';
config.dist = './dist';
/*
|--------------------------------------------------------------------------
| Watch Files
|--------------------------------------------------------------------------
|
| Define files, which "gulp watch" should keep an eye on.
|
*/
config.watch = ['src/**/*', 'index.html'];
/*
|--------------------------------------------------------------------------
| SystemJS Builder
|--------------------------------------------------------------------------
|
| You can pass SystemJS builder/JSPM options, and overwrite those, set in
| gulpfile.js
|
*/
config.jspm = {
bundles: [
{
options: [
'build',
'reflect-metadata + zone.js + app - app/mock/**/*',
config.dist + '/js/app.js',
'--minify',
'--skip-source-maps'
],
devOptions: [
'build',
'reflect-metadata + zone.js + app/main.dev.ts',
config.dist + '/js/app.js',
'--no-mangle'
]
}
]
};
/*
|--------------------------------------------------------------------------
| TypeScript Linter
|--------------------------------------------------------------------------
|
| Define files to check for errors.
| All options are set in tslint.json.
|
*/
config.tslint = {
src: config.src + '/js/**/*.ts'
};
/*
|--------------------------------------------------------------------------
| LESS Configuration
|--------------------------------------------------------------------------
|
| Define the source and destination path, as well as the
| concatinated file name. You may also use less for styleUrls
| within angular.
|
*/
config.less = {
src: config.src + '/css/app.less',
dest: config.dist + '/css',
name: 'app.css'
};
/* |--------------------------------------------------------------------------
| Index File Configuration (Main Entry Point)
|--------------------------------------------------------------------------
|
| Define the source and destination path, as well as the
| file name.
| */
config.index = {
src: './index.html',
dest: config.dist,
name: 'index.html'
};
/*
|--------------------------------------------------------------------------
| Assets Configuration
|--------------------------------------------------------------------------
|
| Define the source and destination path, as well as the
| concatinated file name. Files will be copied as-is.
|
*/
config.assets = {
src: config.src + '/assets/**/*',
dest: config.dist + '/assets'
};
/*
|--------------------------------------------------------------------------
| Copy Configuration
|--------------------------------------------------------------------------
|
| Define additional files that should be copied.
|
*/
config.copy = [
{
base: './node_modules/materialize-css/fonts/roboto',
src: ['/*'],
dest: config.dist + '/assets/fonts/roboto'
},
{
base: './node_modules/flat-color-icons/svg',
src: ['/*.svg'],
dest: config.dist + '/assets/icons'
},
{
base: './node_modules/material-design-icons/iconfont',
src: ['/*.eot', '/*.woff2', '/*.woff', '/*.ttf'],
dest: config.dist + '/assets/fonts/iconfont'
}
];
module.exports = config;