WIP
[website] / Gruntfile.js
1 module.exports = function(grunt) {
2
3   grunt.initConfig({
4
5     subgrunt: {
6       build: {
7         'src/main/frontend': [ 'dist' ]
8       }
9     }
10   });
11
12   require('load-grunt-tasks')(grunt, { scope: 'devDependencies' });
13
14   grunt.registerTask('default', [ 'subgrunt:build' ]);
15 };