From f0ea83cfe4483278c5c10db2d086552d758198dc Mon Sep 17 00:00:00 2001 From: Zelenya Date: Sun, 9 Jun 2024 14:36:38 -0700 Subject: [PATCH 1/2] [Chapter 5] Clarify that an exercise should include subdirectories --- text/chapter5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/chapter5.md b/text/chapter5.md index 8dc64382..e0530295 100644 --- a/text/chapter5.md +++ b/text/chapter5.md @@ -630,7 +630,7 @@ Try out the new version in PSCi – you should get the same result. I'll let you ``` _Hint_: Try to write this function as an array comprehension using do notation. - 3. (Difficult) Write a function `largestSmallest` which takes a `Path` and returns an array containing the single largest and single smallest files in the `Path`. _Note_: consider the cases where there are zero or one files in the `Path` by returning an empty or one-element array, respectively. + 3. (Difficult) Write a function `largestSmallest` which takes a `Path` and returns an array containing the single largest and single smallest files in the `Path`, including (recursively) any subdirectories. _Note_: consider the cases where there are zero or one files in the `Path` by returning an empty or one-element array, respectively. ## Conclusion From 0133859f99be84b7335f42b76eedd85a8de8afd4 Mon Sep 17 00:00:00 2001 From: Zelenya Date: Sat, 20 Jul 2024 13:09:49 -0700 Subject: [PATCH 2/2] Pin markdownlint version --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 25c1a77d..62e47341 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,7 @@ jobs: ${{ runner.os }}- - name: Install NPM dependencies - run: npm install purescript spago markdownlint-cli + run: npm install purescript spago markdownlint-cli@0.37.0 - name: Run Build run: ./scripts/buildAll.sh