About Features Downloads Getting Started Documentation Events Support GitHub

Love VuFind®? Consider becoming a financial supporter. Your support helps build a better VuFind®!

Site Tools


Warning: This page has not been updated in over over a year and may be outdated or deprecated.
development:grunt

This is an old revision of the document!


Grunt Manual

Grunt is a javascript and nodejs based task runner. It has been configured to run several tasks for front end manipulation and packaging. The file has been left simple in order to be easy to edit. You will have to edit Gruntfile.js (root folder) in order to get these scripts to work for custom themes. For more advanced methods, please see our community scripts page.

To setup Grunt to run, first install node and run “npm install” to install all the dependencies in package.json.

Default

Just running “grunt” will perform the less and js compression tasks.

grunt less

Compiles all less files into a compressed css file. By default works for bootstrap3 and bootprint3.

To use:

  1. add path to theme's less folder to start of paths (look up path for imports).
    paths: ["themes/CUSTOM/less", "themes/bootprint3/less", "themes/bootstrap3/less"],
  2. add destination file and link to root less file.
    files: {
      "themes/bootstrap3/css/compiled.css": "themes/bootstrap3/less/bootstrap.less", // you can remove
      "themes/bootprint3/css/compiled.css": "themes/bootprint3/less/bootprint.less", // these if you wish
      "themes/CUSTOM/css/compiled.css": "themes/CUSTOM/less/custom.less"
    }
  3. run
    grunt less
  4. adjust theme.config.php to point to new compressed file.

grunt scss

Compiles all sass files into a compressed css file. By default works for bootstrap3 and bootprint3.

  1. add path to theme's sass folder to start of loadPath (look up path for imports).
    loadPath: ["themes/CUSTOM/sass", "themes/bootprint3/scss", "themes/bootstrap3/scss"],
  2. add destination file and link to root sass file.
    files: {
      "themes/bootstrap3/css/compiled.css": "themes/bootstrap3/scss/bootstrap.scss", // you can remove
      "themes/bootprint3/css/compiled.css": "themes/bootprint3/scss/bootprint.scss", // these if you wish
      "themes/CUSTOM/css/compiled.css": "themes/CUSTOM/scss/custom.scss"
    }
  3. run
    grunt scss
  4. adjust theme.config.php to point to new compressed file.

grunt js

Compress vendor files in bootstrap3 into a single called “vendor.min.js”.

Specifically, it creates a compressed file that includes jquery, bootstrap.js, then all vendor files except for bootstrap-slider.js (not compatible with “use strict” required for compression), and finally autocomplete.js.

To compress your own code: refer to the grunt-contrib-uglify documentation or base your subtask on vendor_min. You can run specific js compression subtasks like this:

grunt uglify:vendor_min

Don't forget to update your theme.config.php.

grunt eslint

Runs eslint style checks. By default, only does bootstrap3.

grunt lessToSass

Converts all less files to sass. Mostly for the VuFind dev team. By default does bootstrap3 and bootprint3.

development/grunt.1473948816.txt.gz · Last modified: 2016/09/15 14:13 by crhallberg