forked from tuhlmann/lein-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
17 lines (17 loc) · 874 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject lein-sass "1.0.1"
:description "SASS autobuilder plugin"
:url "https://github.com/hackeryarn/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.11.1"]]
:plugins [[com.github.clj-kondo/lein-clj-kondo "0.2.5"]]
:profiles {:spec {:sass {:targets ["test/files:test/out"]}}
:spec-map {:sass {:targets ["test/files:test/out/map"]
:source-maps true}}}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:eval-in-leiningen true
:min-lein-version "2.0.0")