This repository was archived by the owner on Nov 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 198
Configuration
roblarsen edited this page Feb 4, 2013
·
8 revisions
-
You can override what folders and files you want to operate on in
project.properties. All the default configuration is indefault.propertieswhich you can use as a template for your configuration work on your own projects. -
If you want to do advanced work you might also need to dig into the
build.xmlto make stuff happen. -
Adding new 'pages' (html, php, etc) is handled by adding files to the
file.pagesproperty
You must wrap any scripts to concatenate in a pair of specially constructed comments. These look like this:
legacy version (pre 1.0) (What version are you running?)
<!-- scripts concatenated and minified via build script -->
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- end scripts -->1.0 and greater
<!-- //-beg- concat_js -->
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- //-end- concat_js -->If you do not wish a script file to be concatenated and minimized, you should link to it outside of those two lines.