Website-Inhalt und -Styling in ein Frontend-Projekt ausgelagert
[website] / Gruntfile.js
diff --git a/Gruntfile.js b/Gruntfile.js
new file mode 100644 (file)
index 0000000..ca16fa1
--- /dev/null
@@ -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' ]);
+};