From 3c56071a7215095ea9daf44cb1d2bac71a592aff Mon Sep 17 00:00:00 2001 From: Jason Sigal Date: Mon, 6 Jan 2020 00:34:12 -0500 Subject: [PATCH] Grunt dev task also decomments (#407) Decomment is necessary for the p5js website inline documentation to parse the jsdoc comments, but not the webpack comments --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 13e56886..8960267f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -65,7 +65,7 @@ module.exports = function(grunt) { grunt.registerTask('lint', ['eslint:source']); grunt.registerTask('default', ['webpack:prod', 'decomment']); - grunt.registerTask('dev', ['connect','webpack:dev']); + grunt.registerTask('dev', ['connect','webpack:dev', 'decomment']); grunt.registerTask('serve', 'connect:server:keepalive'); grunt.registerTask('run-tests', ['serve', 'open']); };