diff --git a/README.md b/README.md index cafb314..33eb5fb 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ A Leiningen alias is available which is helpful during development: $ lein cljsdev ``` -It performs a `cljsbuild clean`, `once` and `auto`. +It performs a `cljsbuild once` and `cljsbuild auto`. Generated web applications are set up with support for a ClojureScript REPL using [weasel](https://github.com/tomjakubowski/weasel). Note that the `project.clj` uses a specific version of ClojureScript and weasel to ensure this configuration works. diff --git a/src/leiningen/new/yawt/project.clj b/src/leiningen/new/yawt/project.clj index f248b29..7cb3e74 100644 --- a/src/leiningen/new/yawt/project.clj +++ b/src/leiningen/new/yawt/project.clj @@ -42,7 +42,7 @@ :plugins [[lein-environ "1.0.0"] {{#webapp}} - [lein-cljsbuild "1.0.3"] + [lein-cljsbuild "1.1.2"] {{/webapp}} {{#postgresql}} [clojurewerkz/ragtime.lein "0.4.0"] @@ -97,5 +97,5 @@ :repl {:resource-paths ["env-resources/repl"] :source-paths ["dev"]}} - :aliases {"uberjar" ["do" "clean" {{#webapp}}["cljsbuild" "clean"]{{/webapp}} "uberjar"]{{#webapp}} - "cljsdev" ["do" ["cljsbuild" "clean"] ["cljsbuild" "once"] ["cljsbuild" "auto"]]{{/webapp}}}) \ No newline at end of file + :aliases {"uberjar" ["do" "clean" "uberjar"]{{#webapp}} + "cljsdev" ["do" ["cljsbuild" "once"] ["cljsbuild" "auto"]]{{/webapp}}}) \ No newline at end of file