Created
March 31, 2014 11:18
-
-
Save nivv/9890130 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array( | |
/* | |
|-------------------------------------------------------------------------- | |
| Assets Folder Base Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your assets | |
| directory. We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'assets_path' => 'assets', | |
/* | |
|-------------------------------------------------------------------------- | |
| Published Assets Folder Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your completed compiled, | |
| minified and linted assets to be published to directory. We've set a | |
| sensible default, but feel free to update it. | |
| | |
*/ | |
'publish_path' => 'public/ifk/assets', | |
/* | |
|-------------------------------------------------------------------------- | |
| The CSS Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your CSS | |
| directory. We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'css_path' => 'assets/css', | |
/* | |
|-------------------------------------------------------------------------- | |
| The CSS File Order | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom order in which | |
| CSS files will be concatenated, compiled and minified. | |
| We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'css_files' => array( | |
'assets/css/less.css' | |
), | |
/* | |
|-------------------------------------------------------------------------- | |
| The JavaScript Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your JavaScript | |
| directory. We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'js_path' => 'assets/js', | |
/* | |
|-------------------------------------------------------------------------- | |
| The JavaScript File Order | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom order in which | |
| JavaScript files will be concatenated, compiled and minified. | |
| We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'js_files' => array( | |
'assets/js/affix.js', | |
'assets/js/alert.js', | |
'assets/js/button.js', | |
'assets/js/carousel.js', | |
'assets/js/collapse.js', | |
'assets/js/dropdown.js', | |
'assets/js/fileinput.js', | |
'assets/js/inputmask.js', | |
'assets/js/modal.js', | |
'assets/js/offcanvas.js', | |
'assets/js/rowlink.js', | |
'assets/js/tab.js', | |
'assets/js/tooltip.js', | |
'assets/js/popover.js', | |
'assets/js/transition.js' | |
), | |
/* | |
|-------------------------------------------------------------------------- | |
| The LESS Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your LESS | |
| directory. We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'less_path' => 'assets/less', | |
/* | |
|-------------------------------------------------------------------------- | |
| The Main LESS file | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your main LESS | |
| file, which should include all imports to other LESS files. | |
| We've set a sensible default, but feel free to update it. | |
| | |
| Note: you LESS will be compiled into a file named "less.css" in the | |
| specified "css_path" above. So be sure to add it into your "css_files" array | |
*/ | |
'less_file' => 'assets/less/bootstrap.less', | |
/* | |
|-------------------------------------------------------------------------- | |
| The SASS Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your SASS | |
| directory. We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'sass_path' => 'assets/sass', | |
/* | |
|-------------------------------------------------------------------------- | |
| The Main SASS file | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your main SASS | |
| file, which should include all imports to other SASS files. | |
| We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'sass_file' => 'assets/sass/main.sass', | |
/* | |
|-------------------------------------------------------------------------- | |
| The Stylus Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your Stylus | |
| directory. We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'stylus_path' => 'assets/stylus', | |
/* | |
|-------------------------------------------------------------------------- | |
| The Main Stylus file | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your main Stylus | |
| file, which should include all imports to other Stylus files. | |
| We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
'stylus_file' => 'assets/stylus/main.stylus', | |
/* | |
|-------------------------------------------------------------------------- | |
| Bower Dependencies (vendor) Folder Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path for you bower dependencies to | |
| reside in. We've set a sensible default, but feel free to update it. | |
| | |
*/ | |
"vendor_path" => "assets/vendor", | |
/* | |
|-------------------------------------------------------------------------- | |
| Bower Dependencies | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify your bower dependencies. We've set a | |
| sensible default, but feel free to update it. | |
| | |
| **Note**: Please use key/value pair to represent dependency & version. Use | |
| the word "null" if you require the latest version, or don't know a version | |
| number | |
| | |
*/ | |
"bower_dependencies" => array( | |
"jquery" => "~1.10.2", | |
"bootstrap" => "~3" | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment