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

- old
+ new

@@ -53,26 +53,32 @@ Renders Sass/CSS, JavaScript/CoffeeScript, HTML/Liquid in the destination folder. Command: `sv compile` +### Inline + +Compile files and then inline CSS in your HTML files. + +Command: `sv inline` + ### Watch Watch for changes then compile files and notify LiveReload. 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 `_` directory. +root and your development files in the `src` directory. ```text Dropbox └── Small Victories └── Your Site - └── _ + └── src │ ├── _includes │ │ └── _head.liquid │ ├── _layout.liquid │ ├── application.css │ ├── application.js @@ -82,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 `_` 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. @@ -133,10 +139,10 @@ + `includes`: Directory where liquid rendered should expect to find snippets. ### Default Configuration ```yaml -source: '_' +source: 'src' destination: '' source_stylesheet: 'application.css' source_javascript: 'application.js' destination_stylesheet: '_sv_custom.css' destination_javascript: '_sv_custom.js'