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

27 lines
381 B
JavaScript

/**
* concurrent
* ==========
*
* Run tasks in parallel to speed up the build process.
*
* Link: https://github.com/sindresorhus/grunt-concurrent
*/
'use strict';
module.exports = function (grunt) {
return {
server: [
'sass:public'
],
test: [
'sass' // tmp
],
public: [
'sass:public',
'imagemin',
'svgmin'
]
};
};