Skip to content

Commit

Permalink
Modify packages.dhall and spago.dhall for fluid submodule
Browse files Browse the repository at this point in the history
Signed-off-by: Achintya Rao <[email protected]>
  • Loading branch information
RaoOfPhysics committed Jul 29, 2024
1 parent caea0f5 commit 46e70ba
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 3 deletions.
23 changes: 22 additions & 1 deletion packages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,25 @@ let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.15.10-20231023/packages.dhall
sha256:b9a482e743055ba8f2d65b08a88cd772b59c6e2084d0e5ad854025fa90417fd4

in upstream
let additions =
{ toppokki =
{ dependencies =
[ "aff-promise"
, "functions"
, "node-buffer"
, "node-fs"
, "node-http"
, "prelude"
, "record"
, "console"
, "effect"
, "assert"
]
, repo =
"https://github.com/justinwoo/purescript-toppokki.git"
, version =
"v4.0.0"
}
}

in upstream // additions
46 changes: 44 additions & 2 deletions spago.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,50 @@ When creating a new Spago project, you can use
to generate this file without the comments in this block.
-}
{ name = "my-project"
, dependencies = [ "console", "effect", "prelude" ]
, dependencies =
[ "aff"
, "affjax"
, "affjax-web"
, "arrays"
, "assert"
, "bifunctors"
, "console"
, "control"
, "debug"
, "effect"
, "either"
, "exceptions"
, "exists"
, "filterable"
, "foldable-traversable"
, "foreign-object"
, "functors"
, "graphs"
, "http-methods"
, "identity"
, "integers"
, "lists"
, "maybe"
, "newtype"
, "nonempty"
, "numbers"
, "ordered-collections"
, "parsing"
, "partial"
, "prelude"
, "profunctor"
, "st"
, "strings"
, "tailrec"
, "toppokki"
, "transformers"
, "tuples"
, "unfoldable"
, "unicode"
, "unsafe-coerce"
, "web-events"
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
, sources = [ "src/**/*.purs", "test/**/*.purs", "fluid/src/**/*.purs", "fluid/test/**/*.purs" ]
, backend = "purs-backend-es build"
}

0 comments on commit 46e70ba

Please sign in to comment.