blob: 65f7b7894bfd34580200954a18f5e6857d94ee63 (
plain) (
tree)
|
|
# project file
(declare-project
:name "template"
:description "a starting place for new projects"
:dependencies [
{:url "https://github.com/ianthehenry/judge.git"
:tag "v2.6.1"} # a fun testing framework
])
(declare-source
:source ["/src/app.janet"])
(task "test" [] (shell "jpm_tree/bin/judge")) # use the judge test runner instead of the one baked into jpm
|