Skip to content

Commit 85504e2

Browse files
authored
Swap Ch9 Canvas with Ch12 Async (#250)
* Swap Ch9 Canvas with Ch12 Async * Fix Ch9 CI - missing data-out dir Note that a file must exist in data-out for it to be tracked by git. The traditional strategy of adding a .gitignore file in the empty directory is incompatible with the naive test reset strategy of removing the entire directory. So next best option is to just populate it with one of the expected output files. * Update chapter name in package.json
1 parent 77c810f commit 85504e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+967
-967
lines changed

exercises/chapter12/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@
88
/.purs*
99
/.psa*
1010
/.spago
11-
/test/data-out/*

exercises/chapter12/spago.dhall

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22
Welcome to a Spago project!
33
You can edit this file as you like.
44
-}
5-
{ name = "my-project"
5+
{ name =
6+
"my-project"
67
, dependencies =
7-
[ "aff"
8-
, "affjax"
9-
, "console"
10-
, "effect"
11-
, "functions"
12-
, "node-fs-aff"
13-
, "parallel"
14-
, "psci-support"
15-
, "strings"
16-
, "test-unit"
17-
]
18-
, packages = ./packages.dhall
19-
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
8+
[ "arrays"
9+
, "canvas"
10+
, "console"
11+
, "lists"
12+
, "psci-support"
13+
, "random"
14+
, "refs"
15+
, "web-dom"
16+
]
17+
, packages =
18+
./packages.dhall
19+
, sources =
20+
[ "src/**/*.purs", "test/**/*.purs" ]
2021
}

0 commit comments

Comments
 (0)