diff --git a/README.md b/README.md index d6fbda9..2519ace 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ For lightweight scipts under 'src' add the classpath, like this: All tasks assume your current cljs/cljc source files are under `src`. ```clojure +user=> (use 'replify.core) user=> (build 'foobar.core) user=> (build-on-node 'foobar.core) ... node main.js diff --git a/project.clj b/project.clj index f992019..c797329 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ - (defproject facjure/replify "0.4.1-SNAPSHOT" + (defproject facjure/replify "0.4.1" :description "A minimalist Clojurescript repl and minimalist build tool" :url "https://github.com/facjure/replify" :scm {:name "git" :url "https://github.com/facjure/replify"} @@ -7,16 +7,16 @@ :source-paths ["src" "target/classes"] :clean-targets ["target" "dist"] :target-path "target" - :dependencies [[org.clojure/clojure "1.9.0-beta2"] - [org.clojure/clojurescript "1.9.946"] + :dependencies [[org.clojure/clojure "1.9.0"] + [org.clojure/clojurescript "1.10.126"] [org.clojure/core.async "0.3.443"] [org.clojure/tools.cli "0.3.5"] [me.raynes/fs "1.4.6"] [alembic "0.3.2"] - [garden "1.3.3"] - [leiningen "2.8.0-RC1"] + [garden "1.3.4"] + [leiningen "2.8.1"] [lein-garden "0.2.8"]] - :npm {:dependencies [[source-map-support "0.5.0"]]} + :npm {:dependencies [[source-map-support "0.5.3"]]} :plugins [[lein-doo "0.1.8"] [lein-npm "0.6.2"]] :uberjar-name "replify.jar")