This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
webtools/project.clj
Gered 4f08c1c2a1 add hiccup page html helper
basically same idea as hiccup's existing html5 function, but includes
some conditional html designed to work in conjunction with some of the
clojurescript utility functions to detect whether an old IE version
is in use, or lack of websockets support, etc.
2016-06-13 12:18:14 -04:00

24 lines
869 B
Clojure

(defproject gered/webtools "0.0.2"
:description "Miscellaneous helper functions and macros for Ring and Compojure."
:url "https://github.com/gered/webtools"
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[cheshire "5.5.0"]
[prismatic/schema "1.0.4"]
[hiccup "1.0.5"]
[cljs-ajax "0.5.5"]
[secretary "1.2.3"]]
:plugins [[lein-cljsbuild "1.1.3"]]
:profiles {:provided
{:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[compojure "1.4.0"]
[ring/ring-core "1.4.0"]]}}
:cljsbuild {:builds
{:main
{:source-paths ["src"]}}})