Skip to content

Commit

Permalink
Grunt dev task also decomments (#407)
Browse files Browse the repository at this point in the history
Decomment is necessary for the p5js website inline documentation to parse the jsdoc comments, but not the webpack comments
  • Loading branch information
therewasaguy authored Jan 6, 2020
1 parent 9760dd0 commit 3c56071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
};

0 comments on commit 3c56071

Please sign in to comment.