File tree Expand file tree Collapse file tree 5 files changed +90
-0
lines changed Expand file tree Collapse file tree 5 files changed +90
-0
lines changed Original file line number Diff line number Diff line change
1
+ /bower_components /
2
+ /node_modules /
3
+ /.pulp-cache /
4
+ /output /
5
+ /generated-docs /
6
+ /.psc-package /
7
+ /.psc *
8
+ /.purs *
9
+ /.psa *
10
+ /.spago
Original file line number Diff line number Diff line change
1
+ let additions =
2
+ { dodo- printer =
3
+ { dependencies =
4
+ [ " aff"
5
+ , " ansi"
6
+ , " avar"
7
+ , " console"
8
+ , " effect"
9
+ , " foldable-traversable"
10
+ , " lists"
11
+ , " maybe"
12
+ , " minibench"
13
+ , " node-child-process"
14
+ , " node-fs-aff"
15
+ , " node-process"
16
+ , " psci-support"
17
+ , " strings"
18
+ ]
19
+ , repo = " https://github.com/natefaubion/purescript-dodo-printer.git"
20
+ , version = " v1.0.8"
21
+ }
22
+ , ps- cst =
23
+ { dependencies =
24
+ [ " ansi"
25
+ , " console"
26
+ , " dodo-printer"
27
+ , " effect"
28
+ , " generics-rep"
29
+ , " node-fs-aff"
30
+ , " node-path"
31
+ , " psci-support"
32
+ , " record"
33
+ , " spec"
34
+ , " strings"
35
+ ]
36
+ , repo = " https://github.com/purescript-codegen/purescript-ps-cst.git"
37
+ , version = " 4fc5bc7"
38
+ }
39
+ }
40
+
41
+ let upstream =
42
+ https:// github. com/ purescript/ package- sets/ releases/ download/ psc- 0.13 . 8 - 20201007 / packages. dhall sha256: 35633 f6f591b94d216392c9e0500207bb1fec42dd355f4fecdfd186956567b6b
43
+
44
+ in upstream // additions
Original file line number Diff line number Diff line change
1
+ { name = " cst-simple"
2
+ , dependencies =
3
+ [ " arrays"
4
+ , " console"
5
+ , " debug"
6
+ , " effect"
7
+ , " node-fs-aff"
8
+ , " parsing"
9
+ , " ps-cst"
10
+ , " psci-support"
11
+ , " spec"
12
+ ]
13
+ , packages = ./ packages. dhall
14
+ , sources = [ " src/**/*.purs" , " test/**/*.purs" ]
15
+ }
Original file line number Diff line number Diff line change
1
+ module Main where
2
+
3
+ import Prelude
4
+
5
+ import Effect (Effect )
6
+ import Effect.Console (log )
7
+
8
+ main :: Effect Unit
9
+ main = do
10
+ log " 🍝"
Original file line number Diff line number Diff line change
1
+ module Test.Main where
2
+
3
+ import Prelude
4
+
5
+ import Effect (Effect )
6
+ import Effect.Class.Console (log )
7
+
8
+ main :: Effect Unit
9
+ main = do
10
+ log " 🍝"
11
+ log " You should add some tests."
You can’t perform that action at this time.
0 commit comments