From d09c77a2470788d0a3e2a05a27dc00fac3749a0c Mon Sep 17 00:00:00 2001 From: James Brock Date: Sun, 25 Apr 2021 23:25:08 +0900 Subject: [PATCH 1/2] bower upgrade deps --- bower.json | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/bower.json b/bower.json index b8bb3f5..9f5755a 100644 --- a/bower.json +++ b/bower.json @@ -12,20 +12,21 @@ "output" ], "dependencies": { - "purescript-functions": "^4.0.0", + "purescript-prelude": "^5.0.0", + "purescript-functions": "^5.0.0", "purescript-arraybuffer-types": "^2.0.0", - "purescript-maybe": "^4.0.1", - "purescript-effect": "^2.0.1", - "purescript-nullable": "^4.1.1", + "purescript-maybe": "^5.0.0", + "purescript-effect": "^3.0.0", + "purescript-nullable": "^5.0.0", "purescript-typelevel": "^6.0.0", - "purescript-uint": "^5.1.1", - "purescript-partial": "^2.0.1", - "purescript-float32": "~0.1.1" + "purescript-uint": "^5.1.4", + "purescript-partial": "^3.0.0", + "purescript-float32": "~0.2.0" }, "devDependencies": { - "purescript-debug": "^4.0.0", - "purescript-quickcheck": "^6.1.0", - "purescript-quickcheck-combinators": "~0.1.2", - "purescript-quickcheck-laws": "^5.0.1" + "purescript-debug": "^5.0.0", + "purescript-quickcheck": "^7.0.0", + "purescript-quickcheck-combinators": "~0.1.3", + "purescript-quickcheck-laws": "^6.0.0" } } From 2fd62973b23407b22446ee2361202f8946f63619 Mon Sep 17 00:00:00 2001 From: James Brock Date: Mon, 26 Apr 2021 00:12:17 +0900 Subject: [PATCH 2/2] Add spago build for purescript v0.14.1 --- .gitignore | 1 + packages.dhall | 34 ++++++++++++++++++++++++++++++++++ spago.dhall | 27 +++++++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 packages.dhall create mode 100644 spago.dhall diff --git a/.gitignore b/.gitignore index e4de85d..9cb72c2 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ node_modules/ yarn-error.log yarn.lock generated-docs/ +.spago/ diff --git a/packages.dhall b/packages.dhall new file mode 100644 index 0000000..cf30481 --- /dev/null +++ b/packages.dhall @@ -0,0 +1,34 @@ + +let upstream = + https://github.com/purescript/package-sets/releases/download/psc-0.14.1-20210419/packages.dhall sha256:d9a082ffb5c0fabf689574f0680e901ca6f924e01acdbece5eeedd951731375a + +let overrides = {=} + +let additions = + { float32 = + { dependencies = + [ "effect" + , "gen" + , "maybe" + , "prelude" + ] + , repo = + "https://github.com/athanclark/purescript-float32.git" + , version = + "v0.2.0" + } + , uint = + { dependencies = + [ "effect" + , "math" + , "maybe" + , "quickcheck" + , "quickcheck-laws" + ] + , repo = "https://github.com/zaquest/purescript-uint.git" + , version = "v5.1.4" + } + } + +in upstream // overrides // additions + diff --git a/spago.dhall b/spago.dhall new file mode 100644 index 0000000..ef25406 --- /dev/null +++ b/spago.dhall @@ -0,0 +1,27 @@ +{ name = "arraybuffer" +, dependencies = + [ "arraybuffer-types" + , "arrays" + , "console" + , "effect" + , "float32" + , "foldable-traversable" + , "functions" + , "gen" + , "maybe" + , "nullable" + , "partial" + , "prelude" + , "quickcheck" + , "quickcheck-combinators" + , "quickcheck-laws" + , "refs" + , "tailrec" + , "typelevel" + , "typelevel-prelude" + , "uint" + , "unfoldable" + ] +, packages = ./packages.dhall +, sources = [ "src/**/*.purs", "test/**/*.purs" ] +}