forked from Teradata/covalent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.conf.js
47 lines (46 loc) · 1.12 KB
/
build.conf.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
'use strict';
module.exports = {
paths: {
packagejson: [
'src/**/**/package.json'
],
deployed: 'deploy/platform/',
styles: [
'!src/theme.scss',
'!src/styles.scss',
'src/**/**.scss',
'!src/app/**/**.scss',
'src/**/**.css',
'!src/app/**/**.css'
],
requiredfiles: [
'src/**/codepoints',
'src/**/MaterialIcons-Regular.eot',
'src/**/MaterialIcons-Regular.ijmap',
'src/**/MaterialIcons-Regular.ttf',
'src/**/MaterialIcons-Regular.woff',
'src/**/MaterialIcons-Regular.woff2',
'!src/theme.scss',
'!src/styles.scss',
'src/**/**.scss',
'!src/app/**/**.scss',
'src/**/**.html',
'src/**/**.md',
'src/**/**.js',
'src/**/**.ts',
'!src/**/**.spec.ts',
'src/**/**/package.json',
'src/**/tsconfig-aot.json',
'!src/tests/**/**.ts',
'!src/app/**/**.html',
'!src/app/**/**.js',
'!src/app/**/**.ts',
'!src/environments/**/**.ts',
'!src/polyfills.ts',
'!src/main.ts',
'!src/test.ts',
'src/typings.d.ts',
'!src/index.html'
]
}
};