Description:
Various documentation updates.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -4,13 +4,13 | |||
|
4 | 4 | |
|
5 | 5 | ## Installation |
|
6 | 6 | |
|
7 | Download from http://example.com/FIXME. | |
|
7 | Download from https://bitbucket.org/alysbrooks/project-checkup/. | |
|
8 | 8 | |
|
9 | 9 | ## Usage |
|
10 | 10 | |
|
11 | 11 | Run the app in the current working directory: |
|
12 | 12 | |
|
13 |
$ java -jar project-checkup-0.1. |
|
|
13 | $ java -jar project-checkup-0.1.4.jar | |
|
14 | 14 | |
|
15 | 15 | ## License |
|
16 | 16 |
@@ -1,6 +1,6 | |||
|
1 | 1 | (defproject project-checkup "0.1.4" |
|
2 | 2 | :description "Makes sure your project is healthy. " |
|
3 | :url "http://example.com/FIXME" | |
|
3 | :url "https://bitbucket.org/alysbrooks/project-checkup" | |
|
4 | 4 | :license {:name "Eclipse Public License" |
|
5 | 5 | :url "http://www.eclipse.org/legal/epl-v10.html"} |
|
6 | 6 | :dependencies [[org.clojure/clojure "1.8.0"] |
@@ -8,29 +8,6 | |||
|
8 | 8 | [org.clojure/core.async "0.4.474"] |
|
9 | 9 | [org.clojure/test.check "0.10.0-alpha3"]] |
|
10 | 10 | |
|
11 | :plugins [[lein-cljsbuild "1.1.5"]] | |
|
12 | ||
|
13 | :cljsbuild {:builds [{:id "development" | |
|
14 | :source-paths ["src"] | |
|
15 | :compiler {:main project-checkup.core | |
|
16 | :output-to "package/index.js" | |
|
17 | :target :nodejs | |
|
18 | :output-dir "target/development" | |
|
19 | :install-deps true | |
|
20 | :optimizations :none | |
|
21 | :pretty-print true | |
|
22 | :parallel-build true}} | |
|
23 | {:id "optimized" | |
|
24 | :source-paths ["src"] | |
|
25 | :compiler {:main project-checkup.core | |
|
26 | :output-to "package/index.js" | |
|
27 | :target :nodejs | |
|
28 | :output-dir "target/optimized" | |
|
29 | ;; :externs ["externs.js"] | |
|
30 | :install-deps true | |
|
31 | :optimizations :advanced | |
|
32 | :pretty-print true | |
|
33 | :parallel-build true}}]} | |
|
34 | 11 | :main ^:skip-aot project-checkup.core |
|
35 | 12 | :target-path "target/%s" |
|
36 | 13 | :profiles {:uberjar {:aot :all}}) |
You need to be logged in to leave comments.
Login now