From 46a12fde6c5cb46d28d14556c665a1c496337536 Mon Sep 17 00:00:00 2001 From: Simon Sendler Date: Fri, 5 Jul 2024 09:43:56 +0200 Subject: [PATCH] build: remove watcher from front end build --- module-gui/src/main/webapp/Gruntfile.js | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/module-gui/src/main/webapp/Gruntfile.js b/module-gui/src/main/webapp/Gruntfile.js index 07df7bc..8b71d14 100644 --- a/module-gui/src/main/webapp/Gruntfile.js +++ b/module-gui/src/main/webapp/Gruntfile.js @@ -12,22 +12,12 @@ module.exports = function(grunt) { src: 'tags/*.tag', dest: 'resources/dist/intranda_step_ocrselector/js/tags.js', } - }, - watcher: { - scripts: { - files: ['tags/*.tag', 'css/*.css'], - tasks: ['riot', 'copy'], - options: { - spawn: false, - }, - }, } }); grunt.loadNpmTasks('grunt-riot'); - grunt.loadNpmTasks('grunt-watcher'); grunt.loadNpmTasks('grunt-contrib-copy'); - grunt.registerTask('default', ['riot', 'watcher']); + grunt.registerTask('default', ['riot']); };