generator-scratch
Version:
Scratch is a starter theme generator based on _s and Foundation. It's a theme meant for hacking so don't use it as a Parent Theme. Instead try turning it into the next, most awesome, WordPress theme out there.
33 lines (32 loc) • 496 B
JavaScript
module.exports = {
/**
* grunt-browser-sync
*
* Live CSS reload & Browser Syncing
*
* @link https://www.npmjs.com/package/grunt-browser-sync
*/
dev: {
bsFiles: {
src: [
'*.php',
'**/*.php',
'Gruntfile.js',
'assets/js/*.js',
'assets/css/*.css'
]
},
options: {
watchTask: true,
debugInfo: true,
logConnections: true,
notify: true,
proxy: 'local.dev.url',
ghostMode: {
scroll: true,
links: true,
forms: true
}
}
}
};