Skip to content
This repository was archived by the owner on Mar 31, 2020. It is now read-only.

Commit 30e5db2

Browse files
author
Jeffrey Way
committed
Really important commit where we add line breaks
1 parent 3265cbf commit 30e5db2

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

Config.js

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ var config = {
2929
| won't need to modify this but it's an option if needed.
3030
|
3131
*/
32+
3233
tasks: [],
3334

3435
/*
@@ -41,6 +42,7 @@ var config = {
4142
| This will enable such things, like CSS and JS minification.
4243
|
4344
*/
45+
4446
production: !! gutils.env.production,
4547

4648
/*
@@ -53,6 +55,7 @@ var config = {
5355
| or "resources/assets/coffee." Change this if you must.
5456
|
5557
*/
58+
5659
assetsPath: 'resources/assets',
5760

5861
/*
@@ -65,6 +68,7 @@ var config = {
6568
| It's useful, when a server requires a unique public path.
6669
|
6770
*/
71+
6872
publicPath: 'public',
6973

7074
/*
@@ -77,6 +81,7 @@ var config = {
7781
| need to modify this path. Otherwise modify as needed.
7882
|
7983
*/
84+
8085
appPath: 'app',
8186

8287
/*
@@ -89,6 +94,7 @@ var config = {
8994
| Quite useful for debugging, it's turned on by default.
9095
|
9196
*/
97+
9298
sourcemaps: true,
9399

94100
css: {
@@ -100,9 +106,10 @@ var config = {
100106
|
101107
| This property declares the root folder for all vanilla CSS
102108
| 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.
104110
|
105111
*/
112+
106113
folder: 'css',
107114

108115
/*
@@ -115,6 +122,7 @@ var config = {
115122
| This property represents the public specific folder.
116123
|
117124
*/
125+
118126
outputFolder: 'css',
119127

120128
/*
@@ -127,6 +135,7 @@ var config = {
127135
| adds or removes vendor-specific CSS3 prefixes. Useful!
128136
|
129137
*/
138+
130139
autoprefix: {
131140
enabled: true,
132141

@@ -147,6 +156,7 @@ var config = {
147156
| set. This object sets the folder name and plugin opts.
148157
|
149158
*/
159+
150160
sass: {
151161
folder: 'sass',
152162

@@ -168,6 +178,7 @@ var config = {
168178
| set. This object sets the folder name and plugin opts.
169179
|
170180
*/
181+
171182
less: {
172183
folder: 'less',
173184

@@ -188,6 +199,7 @@ var config = {
188199
| source files. It then gets affixed to the "assetsPath".
189200
|
190201
*/
202+
191203
folder: 'js',
192204

193205
/*
@@ -200,6 +212,7 @@ var config = {
200212
| represents the name of the folder within that location.
201213
|
202214
*/
215+
203216
outputFolder: 'js',
204217

205218
/*
@@ -212,6 +225,7 @@ var config = {
212225
| in new apps, we make it a cinch right from the get go.
213226
|
214227
*/
228+
215229
babel: {
216230
// https://www.npmjs.com/package/gulp-babel#babel-options
217231
options: {
@@ -230,6 +244,7 @@ var config = {
230244
| sensible defaults to get you up to speed super quickly.
231245
|
232246
*/
247+
233248
browserify: {
234249
// https://www.npmjs.com/package/browserify#usage
235250
options: {},
@@ -264,6 +279,7 @@ var config = {
264279
| When used, this value will be affixed to assetsPath.
265280
|
266281
*/
282+
267283
coffee: {
268284
folder: 'coffee',
269285

@@ -284,6 +300,7 @@ var config = {
284300
| folder, as well as any "gulp-phpunit" specific options.
285301
|
286302
*/
303+
287304
phpUnit: {
288305
path: 'tests',
289306

@@ -305,6 +322,7 @@ var config = {
305322
| folder, as well as any "gulp-phpspec" specific options.
306323
|
307324
*/
325+
308326
phpSpec: {
309327
path: 'spec',
310328

@@ -326,6 +344,7 @@ var config = {
326344
| this time. Here you may set the default "build" folder.
327345
|
328346
*/
347+
329348
versioning: {
330349
buildFolder: 'build'
331350
}

0 commit comments

Comments
 (0)