This project is used to genereate the deployable UXT-Framework assets. In order to use this build system the development machine must meet the following requirments:
- NodeJS v.0.8.x
- GruntJS (grunt-cli) v.0.4
- Ruby v.1.9.x
To generate assets using this system simply navigate to the project folder and enter one of the following commands:
Development mode will make a copy of all assets and compile .scss/.sass file to css. No files will concatinated or minified.
grunt
OR
grunt --target='dev'
Production mode will make a copy of all assets and compile .scss/.sass file to css. Files that would be concatinated for the published build are merged, but no files are minified.
grunt --target='prod'
Publish mode will make a copy of all assets,compile .scss/.sass file to css, concatinate all other files together and minify all files for deployment.
grunt --target='pub'