From 2478a95bcbf92611e6bd787dc48baddce750bc15 Mon Sep 17 00:00:00 2001 From: James Allen Date: Wed, 21 Sep 2016 10:48:23 +0100 Subject: [PATCH] Don't watch files as grunt default --- services/web/Gruntfile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/Gruntfile.coffee b/services/web/Gruntfile.coffee index 60fa6ba0dd..ece9e5bf11 100644 --- a/services/web/Gruntfile.coffee +++ b/services/web/Gruntfile.coffee @@ -380,8 +380,8 @@ module.exports = (grunt) -> grunt.registerTask 'test:modules:unit', 'Run the unit tests for the modules', ['compile:modules:server', 'compile:modules:unit_tests'].concat(moduleUnitTestTasks) - grunt.registerTask 'run', "Compile and run the web-sharelatex server", ['compile', 'env:run', 'parallel'] - grunt.registerTask 'runq', "Compile and run the web-sharelatex server", ['compile', 'env:run', 'exec'] + grunt.registerTask 'run:watch', "Compile and run the web-sharelatex server", ['compile', 'env:run', 'parallel'] + grunt.registerTask 'run', "Compile and run the web-sharelatex server", ['compile', 'env:run', 'exec'] grunt.registerTask 'default', 'run'