Reorganizes asset file structure

Separates assets into
- Source assets: `assets`
- Compiled assets: `dist`

Edits assets.php to reflect changes

Removes '.min' from filenames

Fixes:
- removes 'clean' from build step.
This commit is contained in:
Austin Pray
2014-11-22 19:28:38 -06:00
parent c866f4532d
commit 3a4ae77b1e
24 changed files with 150 additions and 145 deletions

View File

@@ -28,7 +28,7 @@ function roots_setup() {
add_theme_support('html5', array('caption', 'comment-form', 'comment-list'));
// Tell the TinyMCE editor to use a custom stylesheet
add_editor_style('/assets/dist/css/editor-style.css');
add_editor_style('/dist/css/editor-style.css');
}
add_action('after_setup_theme', 'roots_setup');