Sfoglia il codice sorgente

Incorporate review feedback

Jonathan Dahan 7 anni fa
parent
commit
fbdab559bc
1 ha cambiato i file con 13 aggiunte e 9 eliminazioni
  1. 13 9
      pages/common/boot.md

+ 13 - 9
pages/common/boot.md

@@ -1,15 +1,23 @@
 # boot
 
-> Build tooling for Clojure.
-
-- Generate scaffolding for a new project based on a template:
-
-`boot -d boot/new new --template {{template_name}} --name {{project_name}}`
+> Build tooling for the Clojure programming language.
 
 - Start a REPL session either with the project or standalone:
 
 `boot repl`
 
+- Build a single "uberjar":
+
+`boot jar`
+
+- Learn about a command:
+
+`boot cljs --help`
+
+- Generate scaffolding for a new project based on a template:
+
+`boot --dependencies boot/new new --template {{template_name}} --name {{project_name}}`
+
 - Build for development (if using the boot/new template):
 
 `boot dev`
@@ -17,7 +25,3 @@
 - Build for production (if using the boot/new template):
 
 `boot prod`
-
-- Build a single jar:
-
-`boot jar`