forked from doubtfire-lms/doubtfire-web
-
Notifications
You must be signed in to change notification settings - Fork 77
/
build.config.js
117 lines (110 loc) · 3.31 KB
/
build.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
/**
* This file/module contains all configuration for the build process.
*/
module.exports = {
/**
* The `build_dir` folder is where our projects are compiled during
* development and the `compile_dir` folder is where our app resides once it's
* completely built.
*/
build_dir: 'build',
compile_dir: 'bin',
api_dir: '../doubtfire-api',
temp_scss_file: 'tmp.scss',
/**
* This controls which files need preprocessing. This allows us to have
* compile-time changes. For now this is just the environment but in the future
* it might be more complex. Even though it's called preprocessing, I feel like
* it might be a good idea to try and keep it on the build directory to ensure it's
* as unobtrusive as possible, and not confuse which files to compile/overwrite
* actual source code.
*/
preprocess: {
api: {
src: ['build/src/app/api/api-url.js', 'build/src/app/config/external-name/external-name.js'],
options: {
inline: true
}
}
},
/**
* This is a collection of file patterns that refer to our app code (the
* stuff in `src/`). These file paths are used in the configuration of
* build tasks. `js` is all project javascript, sass tests.
* `atpl` contains our app's code. `html` is just our
* main HTML file, `sass` is our main stylesheet, and `unit` contains our
* app's unit tests.
*/
app_files: {
js: [
'src/**/*.js',
'!src/**/*.spec.js',
'!src/assets/**/*.js'
],
jsunit: [
'src/**/*.spec.js'
],
coffee: [
'src/**/*.coffee',
'!src/**/*.spec.coffee',
'!src/**/*.old.coffee'
],
coffeeunit: [
'src/**/*.spec.coffee'
],
atpl: [
'src/app/**/*.tpl.html'
],
html: [
'src/index.html'
],
scss: [
// Do not modify the order
'src/styles/mixins/**/*.scss',
'src/styles/common/**/*.scss',
'src/styles/modules/**/*.scss',
'src/app/**/*.scss',
'!src/app/**/*.component.scss'
]
},
/**
* This is the same as `app_files`, except it contains patterns that
* reference vendor code (`vendor/`) that we need to place into the build
* process somewhere. While the `app_files` property ensures all
* standardized files are collected for compilation, it is the user's job
* to ensure non-standardized (i.e. vendor-related) files are handled
* appropriately in `vendor_files`.
*
* The `vendor_files.compile` holds files that will compile JavaScript
* or SCSS files into compile vendor files into `doubtfire.{js,css}`.
* These files are to be automatically concatenated and minified with
* our project source files.
*
* Anything insider `vendor_files.copy` will copy files into the `assets/`
* directory under the same directory structure (i.e., under `vendor/.../`)
*/
vendor_files: {
compile: {
js: [
],
jsmap: [
],
scss: [
'node_modules/bootstrap-sass/**/_bootstrap.scss',
'node_modules/font-awesome/**/font-awesome.scss'
],
},
copy: {
js: [
],
jsmap: [
],
css: [
"node_modules/nvd3/build/nv.d3.css",
"node_modules/angular-xeditable/dist/css/xeditable.css",
"node_modules/codemirror/lib/codemirror.css",
"node_modules/codemirror/theme/xq-light.css"
]
}
}
};