forked from rkaercher/lein-haml-sass
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
31 lines (25 loc) · 1.12 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
(defproject lein-sass "0.3.7-SNAPSHOT"
:description "SASS autobuilder plugin"
:url "https://github.com/101loops/lein-sass"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.jruby/jruby-complete "1.7.18"]
[com.cemerick/pomegranate "0.2.0"]
[clojure-watch "LATEST"]
[me.raynes/fs "1.4.6"]]
:profiles {:dev {:dependencies [[speclj "2.5.0"]
[org.rubygems/sass "3.3.0.rc.2"]]
:plugins [[speclj "2.5.0"]]
:test-paths ["spec/"]
:repositories [["gem-jars" "http://deux.gemjars.org"]]}
:spec {:sass {:src "spec/files"
:output-directory "spec/out"}}
:spec-map {:sass {:src "spec/files"
:source-maps true
:output-directory "spec/out/map"}}}
:hooks [leiningen.sass]
:eval-in-leiningen true
:min-lein-version "2.0.0"
)