2017-01-29 23:51:08 +00:00
|
|
|
module.exports = function exports(grunt) {
|
|
|
|
'use strict';
|
2016-05-27 21:59:01 +00:00
|
|
|
|
2017-01-29 23:51:08 +00:00
|
|
|
grunt.loadTasks('tasks');
|
2015-03-29 12:43:02 +00:00
|
|
|
|
2017-01-30 07:37:31 +00:00
|
|
|
grunt.registerTask('default', ['lint', 'copy', 'sass:dist', 'postcss', 'requirejs:default', 'cachebreaker', 'inline', 'htmlmin', 'json-minify', 'clean:release']);
|
2017-01-29 23:51:08 +00:00
|
|
|
grunt.registerTask('lint', ['sasslint', 'eslint']);
|
2017-01-30 07:37:31 +00:00
|
|
|
grunt.registerTask('serve', ['lint', 'copy', 'sass:dev', 'postcss', 'requirejs:dev', 'inline:dev', 'htmlmin', 'json-minify', 'browserSync', 'watch']);
|
2016-05-22 11:23:43 +00:00
|
|
|
};
|