From 6dfe8534c6128395da25b63e429a2c846726467f Mon Sep 17 00:00:00 2001 From: mithrayls Date: Thu, 6 Oct 2022 16:29:34 +1300 Subject: [PATCH 1/2] Added a section on Easy Installation. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 445de8d..48b0fc7 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,20 @@ cd lib ln -s ../.spago/dhall-purescript/main/lib/cbor-js cbor-js ``` +## Installation - Easy + +To From the project root +```sh +spago build +./grammar.jsh +``` + +## CLI Usage - Easy + +``` +npm run cli -- normalize-all -b "packages.dhall" +``` + ## Why Dhall? Because Dhall is awesome, relatively simple, and conceptually clean. It has an agreed-upon standard, with lots of tests, is under active development, continually improving. From 18743fc73ec8436e0e663823a7e2cbdb4f52717d Mon Sep 17 00:00:00 2001 From: mithrayls Date: Thu, 6 Oct 2022 16:32:19 +1300 Subject: [PATCH 2/2] fixed spelling mistake --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 48b0fc7..fe03808 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ ln -s ../.spago/dhall-purescript/main/lib/cbor-js cbor-js To From the project root ```sh spago build -./grammar.jsh +./grammar.sh ``` ## CLI Usage - Easy