Skip to content

Commit 330e07e

Browse files
committed
Small fixes
1 parent 57a9af8 commit 330e07e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,6 @@ jobs:
4747

4848
- name: Build the project
4949
run: npm run build
50+
51+
- name: Build examples
52+
run: npm run example

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
/.vscode/
1111
/.spago/
1212
/output-pulp/
13-
.psc-*
13+
.psc-*

examples/basic/src/Basic.purs

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,12 @@ moveItem fromIndex toIndex items =
128128

129129
main :: Effect Unit
130130
main = do
131-
maybeRoot <- window
131+
maybeContainer <- window
132132
>>= document
133133
>>= toNonElementParentNode
134134
>>> getElementById "container"
135-
case maybeRoot of
136-
Nothing -> throw "Root element not found."
135+
case maybeContainer of
136+
Nothing -> throw "Container element not found."
137137
Just container -> do
138138
todoExample <- mkTodoExample
139139
render (todoExample unit) container

0 commit comments

Comments
 (0)