-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathgulpconfig.js
70 lines (69 loc) · 2.12 KB
/
gulpconfig.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
//
// Config settings
// --------------------------------------------------
module.exports = function(root){
return {
app: {
dir: root + 'app/design/frontend/'
},
skin: {
dir: root + 'skin/frontend/'
},
js: {
dir: root + 'js/'
},
build: {
css: {},
js: {
dir: root + 'js/build/',
global: {
concat: 'magento.js',
min: 'magento.min.js'
},
catalog: {
concat: 'catalog.js',
min: 'catalog.min.js'
},
product: {
simple: {
concat: 'product_simple.js',
min: 'product_simple.min.js'
},
configurable: {
concat: 'product_configurable.js',
min: 'product_configurable.min.js'
},
grouped: {
concat: 'product_grouped.js',
min: 'product_grouped.min.js'
},
virtual: {
concat: 'product_virtual.js',
min: 'product_virtual.min.js'
},
bundle: {
concat: 'product_bundle.js',
min: 'product_bundle.min.js'
}
},
cart: {
concat: 'cart.js',
min: 'cart.min.js'
},
checkout: {
opc: {
concat: 'checkout_opc.js',
min: 'checkout_opc.min.js'
},
msc: {
concat: 'checkout_msc.js',
min: 'checkout_msc.min.js'
}
}
}
},
vendor: {
dir: root + '../vendor/'
}
}
}