Skip to content

Commit

Permalink
build: remove watcher from front end build
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Sendler committed Jul 5, 2024
1 parent dd24899 commit 46a12fd
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions module-gui/src/main/webapp/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);

};

0 comments on commit 46a12fd

Please sign in to comment.