chartist-js/tasks/useminPrepare.js
2014-11-25 09:52:53 +01:00

22 lines
461 B
JavaScript

/**
* useminPrepare
* =============
*
* Reads HTML for usemin blocks to enable smart builds that automatically
* concat, minify and revision files. Creates configurations in memory so
* additional tasks can operate on them.
*
* Link: https://github.com/yeoman/grunt-usemin
*/
'use strict';
module.exports = function (grunt) {
return {
options: {
dest: '<%= pkg.config.public %>'
},
html: '<%= pkg.config.tmp %>/index.html'
}
};