Skip to content

Commit

Permalink
fix project and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Dom Kiva-Meyer committed Jun 20, 2014
1 parent d9300bc commit ab4d262
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Omelette: Isomorphic Clojure[Script]

## via [Om](https://github.com/swannodette/om)/[React](http://facebook.github.io/react/), [Sente](https://github.com/ptaoussanis/sente), and JDK8's Nashorn JavaScript engine
### [Om](https://github.com/swannodette/om)/[React](http://facebook.github.io/react/), [Sente](https://github.com/ptaoussanis/sente), and JDK8's Nashorn JavaScript engine

Clone and `lein run`
Clone and run `lein demo`.
25 changes: 10 additions & 15 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -42,28 +42,23 @@
{:source-paths ["src"], :output-path "target/src", :rules :cljs}]}

:cljsbuild {:builds [{:source-paths ["src" "target/src"]
:compiler {
:preamble ["react/react.min.js"]
:compiler {:preamble ["react/react.min.js"]
:output-to "target/resources/public/assets/scripts/main.js"
:output-dir "target/resources/public/assets/scripts"
:source-map "target/resources/public/assets/scripts/main.js.map"
:optimizations :whitespace}
:notify-command ["terminal-notifier" "-message"]}]}
:optimizations :whitespace}}]}

:profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.4"]]
:source-paths ["dev"]}
:build {}}

:aliases {"build-auto" ["with-profile" "build"
"do" "clean"
["cljx" "once"]
:aliases {"demo" ["with-profile" "build"
"do" "clean,"
"cljx" "once,"
"run"]
"build-auto" ["with-profile" "build"
"do" "clean,"
"cljx" "once,"
["pdo"
"cljx" "auto,"
"cljsbuild" "auto"]]
"run-dev" ["do" "clean"
["cljx" "once"]
["cljsbuild" "once"]
["pdo"
"cljx" "auto,"
"cljsbuild" "auto,"
"run"]]})
"cljsbuild" "auto"]]})

0 comments on commit ab4d262

Please sign in to comment.