Function: projectile-tasks-from-deno

projectile-tasks-from-deno is a byte-compiled function defined in projectile.el.

Signature

(projectile-tasks-from-deno PROJECT-ROOT)

Documentation

Return the Deno tasks of the project in PROJECT-ROOT.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-tasks-from-deno (project-root)
  "Return the Deno tasks of the project in PROJECT-ROOT."
  (when-let* ((file (projectile--first-task-file
                     project-root projectile--deno-config-names)))
    (projectile--json-tasks file 'tasks "deno" "deno task %s")))