-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.clj
38 lines (38 loc) · 1.39 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(defproject macchiato/fs "0.2.2"
:description "filesystem utilities"
:url "https://github.com/macchiato-framework/macchiato-fs"
:scm {:name "git"
:url "https://github.com/macchiato-framework/macchiato-fs.git"}
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:clojurescript? true
:dependencies [[org.clojure/clojure "1.10.0" :scope "provided"]
[org.clojure/clojurescript "1.10.520" :scope "provided"]]
:plugins [[lein-cljsbuild "1.1.4"]
[lein-codox "0.10.2"]
[lein-doo "0.1.7"]
[lein-npm "0.6.2"]]
:npm {:dependencies []}
:profiles {:test
{:cljsbuild
{:builds
{:test
{:source-paths ["src" "test"]
:compiler {:main macchiato.test.runner
:output-to "target/test/core.js"
:target :nodejs
:optimizations :none
:source-map true
:pretty-print true}}}}
:doo {:build "test"}}}
:aliases
{"test"
["do"
["npm" "install"]
["clean"]
["with-profile" "test" "doo" "node" "once"]]
"test-watch"
["do"
["npm" "install"]
["clean"]
["with-profile" "test" "doo" "node"]]})