forked from Japan-Digital-Archives/Japan-Digital-Archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaggregate_conf.js
27 lines (27 loc) · 879 Bytes
/
aggregate_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
module.exports = {
watch:{
filePattern:/.*\.js$/
},
convert:[
{
input: 'web/js/loaders/about.js',
output: 'web/js_min/about.js',
message:"Don't forget to check the JS paths in /src/Zeega/CoreBundle/Resources/views/Editor/editor.html.twig"
},
{
input: 'web/js/loaders/home.js',
output: 'web/js_min/home.js',
message:"Don't forget to check the JS paths in /src/Zeega/CoreBundle/Resources/views/Editor/editor.html.twig"
},
{
input: 'web/js/loaders/item.js',
output: 'web/js_min/item.js',
message:"Don't forget to check the JS paths in /src/Zeega/CoreBundle/Resources/views/Editor/editor.html.twig"
},
{
input: 'web/js/loaders/search.js',
output: 'web/js_min/search.js',
message:"Don't forget to check the JS paths in /src/Zeega/CoreBundle/Resources/views/Editor/editor.html.twig"
}
]
}