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
|
$ 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).
|
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.
|
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"]
|
:plugins [[lein-environ "1.0.0"]
|
||||||
{{#webapp}}
|
{{#webapp}}
|
||||||
[lein-cljsbuild "1.0.3"]
|
[lein-cljsbuild "1.1.2"]
|
||||||
{{/webapp}}
|
{{/webapp}}
|
||||||
{{#postgresql}}
|
{{#postgresql}}
|
||||||
[clojurewerkz/ragtime.lein "0.4.0"]
|
[clojurewerkz/ragtime.lein "0.4.0"]
|
||||||
|
@ -97,5 +97,5 @@
|
||||||
:repl {:resource-paths ["env-resources/repl"]
|
:repl {:resource-paths ["env-resources/repl"]
|
||||||
:source-paths ["dev"]}}
|
:source-paths ["dev"]}}
|
||||||
|
|
||||||
:aliases {"uberjar" ["do" "clean" {{#webapp}}["cljsbuild" "clean"]{{/webapp}} "uberjar"]{{#webapp}}
|
:aliases {"uberjar" ["do" "clean" "uberjar"]{{#webapp}}
|
||||||
"cljsdev" ["do" ["cljsbuild" "clean"] ["cljsbuild" "once"] ["cljsbuild" "auto"]]{{/webapp}}})
|
"cljsdev" ["do" ["cljsbuild" "once"] ["cljsbuild" "auto"]]{{/webapp}}})
|
Reference in a new issue