update cljsbuild dependency
This commit is contained in:
parent
84eb8b8036
commit
c6611802aa
|
@ -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.
|
||||
|
|
|
@ -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}}})
|
||||
:aliases {"uberjar" ["do" "clean" "uberjar"]{{#webapp}}
|
||||
"cljsdev" ["do" ["cljsbuild" "once"] ["cljsbuild" "auto"]]{{/webapp}}})
|
Reference in a new issue