about summary refs log tree commit diff stats
path: root/janet/fedi-playground/project.janet
blob: a3425e3eaaf72a14b4128d953a7270ff2fab8456 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(declare-project
  :name "fedi-playground"
  :description "a place to play with json data from the fediverse."
  :dependencies [
    {:url "https://github.com/ianthehenry/judge.git"
     :tag "v2.6.1"}
    {:url "https://github.com/janet-lang/spork.git"}
  ])

(declare-source
  # :source is an array or tuple that can contain
  # source files and directories that will be installed.
  # Often will just be a single file or single directory.
  :source ["/src/play.janet"])

# (task "test" [] (shell "jpm_tree/bin/judge"))