From 289b0dc09fbf7dd88cc44094b201dd66138f2ab4 Mon Sep 17 00:00:00 2001 From: mde Date: Sat, 6 Feb 2021 12:20:38 -0800 Subject: [PATCH] Remove unused arg --- jakefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jakefile.js b/jakefile.js index 5d4a4feb..3953160a 100644 --- a/jakefile.js +++ b/jakefile.js @@ -34,7 +34,7 @@ task('minify', function () { }); desc('Generates the EJS API docs for the public API'); -task('doc', function (dev) { +task('doc', function () { jake.rmRf('out'); exec('./node_modules/.bin/jsdoc --verbose -c jsdoc.json lib/* docs/jsdoc/*'); console.log('Documentation generated in ./out.');