@@ -29,6 +29,7 @@ var config = {
29
29
| won't need to modify this but it's an option if needed.
30
30
|
31
31
*/
32
+
32
33
tasks : [ ] ,
33
34
34
35
/*
@@ -41,6 +42,7 @@ var config = {
41
42
| This will enable such things, like CSS and JS minification.
42
43
|
43
44
*/
45
+
44
46
production : ! ! gutils . env . production ,
45
47
46
48
/*
@@ -53,6 +55,7 @@ var config = {
53
55
| or "resources/assets/coffee." Change this if you must.
54
56
|
55
57
*/
58
+
56
59
assetsPath : 'resources/assets' ,
57
60
58
61
/*
@@ -65,6 +68,7 @@ var config = {
65
68
| It's useful, when a server requires a unique public path.
66
69
|
67
70
*/
71
+
68
72
publicPath : 'public' ,
69
73
70
74
/*
@@ -77,6 +81,7 @@ var config = {
77
81
| need to modify this path. Otherwise modify as needed.
78
82
|
79
83
*/
84
+
80
85
appPath : 'app' ,
81
86
82
87
/*
@@ -89,6 +94,7 @@ var config = {
89
94
| Quite useful for debugging, it's turned on by default.
90
95
|
91
96
*/
97
+
92
98
sourcemaps : true ,
93
99
94
100
css : {
@@ -100,9 +106,10 @@ var config = {
100
106
|
101
107
| This property declares the root folder for all vanilla CSS
102
108
| files. Note that this is the folder name, not the path.
103
- | We'll stick with a basic "css" name, which makes sense.
109
+ | We'll stick with a general "css" name - makes sense.
104
110
|
105
111
*/
112
+
106
113
folder : 'css' ,
107
114
108
115
/*
@@ -115,6 +122,7 @@ var config = {
115
122
| This property represents the public specific folder.
116
123
|
117
124
*/
125
+
118
126
outputFolder : 'css' ,
119
127
120
128
/*
@@ -127,6 +135,7 @@ var config = {
127
135
| adds or removes vendor-specific CSS3 prefixes. Useful!
128
136
|
129
137
*/
138
+
130
139
autoprefix : {
131
140
enabled : true ,
132
141
@@ -147,6 +156,7 @@ var config = {
147
156
| set. This object sets the folder name and plugin opts.
148
157
|
149
158
*/
159
+
150
160
sass : {
151
161
folder : 'sass' ,
152
162
@@ -168,6 +178,7 @@ var config = {
168
178
| set. This object sets the folder name and plugin opts.
169
179
|
170
180
*/
181
+
171
182
less : {
172
183
folder : 'less' ,
173
184
@@ -188,6 +199,7 @@ var config = {
188
199
| source files. It then gets affixed to the "assetsPath".
189
200
|
190
201
*/
202
+
191
203
folder : 'js' ,
192
204
193
205
/*
@@ -200,6 +212,7 @@ var config = {
200
212
| represents the name of the folder within that location.
201
213
|
202
214
*/
215
+
203
216
outputFolder : 'js' ,
204
217
205
218
/*
@@ -212,6 +225,7 @@ var config = {
212
225
| in new apps, we make it a cinch right from the get go.
213
226
|
214
227
*/
228
+
215
229
babel : {
216
230
// https://www.npmjs.com/package/gulp-babel#babel-options
217
231
options : {
@@ -230,6 +244,7 @@ var config = {
230
244
| sensible defaults to get you up to speed super quickly.
231
245
|
232
246
*/
247
+
233
248
browserify : {
234
249
// https://www.npmjs.com/package/browserify#usage
235
250
options : { } ,
@@ -264,6 +279,7 @@ var config = {
264
279
| When used, this value will be affixed to assetsPath.
265
280
|
266
281
*/
282
+
267
283
coffee : {
268
284
folder : 'coffee' ,
269
285
@@ -284,6 +300,7 @@ var config = {
284
300
| folder, as well as any "gulp-phpunit" specific options.
285
301
|
286
302
*/
303
+
287
304
phpUnit : {
288
305
path : 'tests' ,
289
306
@@ -305,6 +322,7 @@ var config = {
305
322
| folder, as well as any "gulp-phpspec" specific options.
306
323
|
307
324
*/
325
+
308
326
phpSpec : {
309
327
path : 'spec' ,
310
328
@@ -326,6 +344,7 @@ var config = {
326
344
| this time. Here you may set the default "build" folder.
327
345
|
328
346
*/
347
+
329
348
versioning : {
330
349
buildFolder : 'build'
331
350
}
0 commit comments