Skip to content

Commit e0cfac0

Browse files
Prepare for a release
Build with latest package-sets. Remove Pulp and Bower from toolchain.
1 parent 9445288 commit e0cfac0

File tree

6 files changed

+6
-53
lines changed

6 files changed

+6
-53
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# CHANGELOG
22

3-
## v0.6.0 (2022-08-17)
3+
## v0.6.0 (2022-10-10)
44

5-
* Purescript 0.15.0
5+
* Purescript 0.15.4
66
* Support vexflow4
77
* Support chord symbols
88
* Support the full variety of variant endings

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ To build the library
1616
spago install
1717
npm run build
1818

19-
or
20-
21-
bower install
22-
pulp build
23-
2419
To build the small display examples
2520
-----------------------------------
2621
npm run display-tests

bower.json

Lines changed: 0 additions & 19 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"private": true,
33
"scripts": {
4-
"pulp-build": "pulp build",
5-
"pulp-test": "pulp test",
64
"build": "spago build",
75
"test": "spago -x ./test.dhall test",
86
"display-tests": "spago -x ./display-tests.dhall bundle-app --main Examples.DisplayTests.Main --to examples/display-tests/dist/display-tests.js",
@@ -17,8 +15,7 @@
1715
"debug": "spago -x ./debug.dhall run --main Examples.DebugBar.Main"
1816
},
1917
"devDependencies": {
20-
"pulp": "^16.0.0",
21-
"purescript": "^0.15.0",
18+
"purescript": "^0.15.4",
2219
"spago": "0.20.9"
2320
}
2421
}

packages.dhall

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -105,27 +105,7 @@ in upstream
105105
-------------------------------
106106
-}
107107
let upstream =
108-
https://github.com/purescript/package-sets/releases/download/psc-0.15.0-20220507/packages.dhall
109-
sha256:cf54330f3bc1b25a093b69bff8489180c954b43668c81288901a2ec29a08cc64
108+
https://github.com/purescript/package-sets/releases/download/psc-0.15.4-20221010/packages.dhall
109+
sha256:adaff055458c5dd3568903f9e54b5cd8bed23085d5b344482fd804050c5e1849
110110

111111
in upstream
112-
with abc-parser =
113-
{ dependencies =
114-
[ "bifunctors"
115-
, "effect"
116-
, "either"
117-
, "foldable-traversable"
118-
, "maybe"
119-
, "midi"
120-
, "ordered-collections"
121-
, "profunctor-lenses"
122-
, "rationals"
123-
, "strings"
124-
, "stringutils"
125-
, "string-parsers"
126-
, "transformers"
127-
, "tuples"
128-
]
129-
, repo = "https://github.com/newlandsvalley/purescript-abc-parser.git"
130-
, version = "ps015"
131-
}

src/VexFlow/Abc/TickableContext.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Data.List.NonEmpty (head, length, toUnfoldable) as Nel
2121
import Data.Maybe (Maybe, maybe, fromMaybe)
2222
import Data.Int (round, toNumber)
2323
import Data.Rational ((%), fromInt)
24-
import Prelude (class Monoid, class Semigroup, map, mempty, not, (*), (+), ($), (||), (&&), (==))
24+
import Prelude (class Monoid, class Semigroup, map, mempty, (*), (+), ($))
2525

2626
-- | The default horizontal separation between notes in a bar (measured
2727
-- | in pixels at a standard scale of 1.0)

0 commit comments

Comments
 (0)