X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=Gruntfile.js;fp=Gruntfile.js;h=ca16fa1f3d5d9a1068cab222b3ae9a2e0a0b87c1;hb=139f3dc60fb1a679c636d9dcc36faeb8400fa165;hp=0000000000000000000000000000000000000000;hpb=7967465800f4235b769e7151d5986ca92fc2a0ff;p=website diff --git a/Gruntfile.js b/Gruntfile.js new file mode 100644 index 00000000..ca16fa1f --- /dev/null +++ b/Gruntfile.js @@ -0,0 +1,15 @@ +module.exports = function(grunt) { + + grunt.initConfig({ + + subgrunt: { + build: { + 'src/main/frontend': [ 'dist' ] + } + } + }); + + require('load-grunt-tasks')(grunt, { scope: 'devDependencies' }); + + grunt.registerTask('default', [ 'subgrunt:build' ]); +};