about summary refs log tree commit diff stats
path: root/janet/tmplt/project.janet
blob: 65f7b7894bfd34580200954a18f5e6857d94ee63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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