Skip to content

Commit

Permalink
Minor config.json update
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoporto committed Nov 4, 2016
1 parent 67533b3 commit 523378c
Showing 1 changed file with 85 additions and 63 deletions.
148 changes: 85 additions & 63 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,87 @@
{
"basePaths": {
"src": "src/",
"dest": "dist/",
"build": "build/",
"bower": "dist/bower_components",

"images": {
"src": "images/",
"dest": "img/"
},

"sprite": {
"src": "sprite/"
},

"scripts": {
"src": "scripts/",
"dest": "js/"
},

"styles": {
"src": "stylesheets/",
"dest": "css/"
}
},

"components": false,

"jquery": false,

"lintCSS": false,

"lintJS": true,

"autoprefixerBrowsers": [
"ie >= 8",
"ie_mob >= 10",
"Firefox > 24",
"last 10 Chrome versions",
"safari >= 6",
"opera >= 24",
"ios >= 6",
"android >= 4",
"bb >= 10"
],

"browserSync": {
"notify": false,
"port": 80,
"logPrefix": "BrowserSync",
"server": {
"baseDir": ["dist/"]
}
},

"browserSyncBuild": {
"notify": false,
"port": 80,
"logPrefix": "BrowserSync",
"server": {
"baseDir": ["build/"]
}
}
"basePaths": {
"src": "src/",
"dest": "dist/",
"build": "build/",

"handlebars": {
"src": "handlebars/",
"partials": {
"src": "includes/"
}
},

"images": {
"src": "images/",
"dest": "img/"
},

"fonts": {
"dest": "fonts/"
},

"sprite": {
"src": "sprite/"
},

"scripts": {
"src": "scripts/",
"dest": "js/"
},

"styles": {
"src": "stylesheets/",
"dest": "css/"
},

"clean": {
"ignore": [
"!dist/img/{copyright,logos}{,**/*{,**/*}}"
]
}
},

"components": true,

"jQuery": false,

"lintCSS": false,

"lintJS": true,

"inlineSVG": false,

"handlebars": true,

"autoprefixerBrowsers": [
"ie > 7",
"ie_mob > 9",
"Firefox > 24",
"last 10 Chrome versions",
"safari > 5",
"opera > 24",
"ios > 5",
"android > 4",
"bb > 10"
],

"browserSync": {
"notify": false,
"logPrefix": "BrowserSync",
"server": {
"baseDir": ["dist/", "./"]
},
"routes": {
"/bower_components": "bower_components",
"/node_modules": "node_modules"
}
},

"browserSyncBuild": {
"notify": false,
"logPrefix": "BrowserSync",
"server": {
"baseDir": ["build/"]
}
}
}

0 comments on commit 523378c

Please sign in to comment.