Skip to content

Commit

Permalink
WIP Don't check git submodules in 'npm run build'
Browse files Browse the repository at this point in the history
Signed-off-by: Lewis Marshall <[email protected]>
  • Loading branch information
lmars committed Aug 4, 2023
1 parent 76624d4 commit cb8cd65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);

Expand Down

0 comments on commit cb8cd65

Please sign in to comment.