README.md in smallvictories-0.0.10 vs README.md in smallvictories-0.0.11

- old
+ new

@@ -68,17 +68,17 @@ Command: `sv watch` ### Default Folder Structure The default setup for Small Victories is to have your production files in the -root and your development files in the `src` directory. +root and your development files in the `_src` directory. ```text Dropbox └── Small Victories └── Your Site - └── src + └── _src │ ├── _includes │ │ └── _head.liquid │ ├── _layout.liquid │ ├── application.css │ ├── application.js @@ -88,11 +88,11 @@ ├── _sv_custom.js └── index.html ``` You would then run `sv watch` from within `Your Site` and Small Victories will -watch for changes in `src` and compile them to the `Your Site` folder. +watch for changes in `_src` and compile them to the `Your Site` folder. ## How does it work with Small Victories? This gem allows you to build a site using the tools you're used to and compile a version directly into a Small Victories folder. @@ -139,10 +139,10 @@ + `includes`: Directory where liquid rendered should expect to find snippets. ### Default Configuration ```yaml -source: 'src' +source: '_src' destination: '' source_stylesheet: 'application.css' source_javascript: 'application.js' destination_stylesheet: '_sv_custom.css' destination_javascript: '_sv_custom.js'