From cb8cd658ed3e388d4a7262285a258a78c8285d9c Mon Sep 17 00:00:00 2001 From: Lewis Marshall Date: Thu, 3 Aug 2023 01:21:35 +0100 Subject: [PATCH] WIP Don't check git submodules in 'npm run build' Signed-off-by: Lewis Marshall --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index ac233ce0b2..8c6aaabad5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -107,11 +107,11 @@ module.exports = function (grunt) { }); }); - grunt.registerTask('build', ['checkGitSubmodules', 'webpack:all']); + grunt.registerTask('build', ['webpack:all']); - grunt.registerTask('build:node', ['checkGitSubmodules', 'webpack:node']); + grunt.registerTask('build:node', ['webpack:node']); - grunt.registerTask('build:browser', ['checkGitSubmodules', 'webpack:browser']); + grunt.registerTask('build:browser', ['webpack:browser']); grunt.registerTask('check-closure-compiler', ['build', 'closureCompiler:ably.js']);