diff --git a/nix/scripts/create-documentation-files.nix b/nix/scripts/create-documentation-files.nix index d508f9047e4c0a7be86199c9031c12458be74228..a8ec326247a09ca4632fdb7a030ce748c093fe77 100644 --- a/nix/scripts/create-documentation-files.nix +++ b/nix/scripts/create-documentation-files.nix @@ -25,7 +25,8 @@ echo_step "create documentation files for $targetPath" targetPath=$(realpath --relative-to=source "$targetPath") -if ! ${pkgs'.nodejs_20}/bin/node --inspect-brk development/scripts/createNewClass.mjs --path="$targetPath" --onlydoc; then +## --inspect-brk (debug flag) +if ! ${pkgs'.nodejs_20}/bin/node development/scripts/createNewClass.mjs --path="$targetPath" --onlydoc; then echo_fail "script createNewClass.mjs failed, check your JS!" exit 1 fi