Skip to content

Commit 0a98501

Browse files
committed
Update package sets
1 parent 4633ad9 commit 0a98501

File tree

4 files changed

+6
-111
lines changed

4 files changed

+6
-111
lines changed

bower.json

+2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@
1414
"output"
1515
],
1616
"dependencies": {
17+
"purescript-arrays": "^v7.0.0",
1718
"purescript-effect": "^v4.0.0",
1819
"purescript-foldable-traversable": "^v6.0.0",
1920
"purescript-foreign-object": "^v4.0.0",
2021
"purescript-maybe": "^v6.0.0",
2122
"purescript-nullable": "^v6.0.0",
2223
"purescript-prelude": "^v6.0.0",
2324
"purescript-react-basic": "^v17.0.0",
25+
"purescript-record": "^v4.0.0",
2426
"purescript-unsafe-coerce": "^v6.0.0",
2527
"purescript-web-dom": "^v6.0.0",
2628
"purescript-web-events": "^v4.0.0",

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"bower": "^1.8.12",
2222
"npm-run-all": "^4.1.5",
2323
"pulp": "^16.0.1",
24-
"purescript": "^0.15.0",
24+
"purescript": "^0.15.4",
2525
"spago": "^0.20.9"
2626
},
2727
"scripts": {

packages.dhall

+2-109
Original file line numberDiff line numberDiff line change
@@ -1,112 +1,5 @@
1-
{-
2-
Welcome to your new Dhall package-set!
3-
4-
Below are instructions for how to edit this file for most use
5-
cases, so that you don't need to know Dhall to use it.
6-
7-
## Warning: Don't Move This Top-Level Comment!
8-
9-
Due to how `dhall format` currently works, this comment's
10-
instructions cannot appear near corresponding sections below
11-
because `dhall format` will delete the comment. However,
12-
it will not delete a top-level comment like this one.
13-
14-
## Use Cases
15-
16-
Most will want to do one or both of these options:
17-
1. Override/Patch a package's dependency
18-
2. Add a package not already in the default package set
19-
20-
This file will continue to work whether you use one or both options.
21-
Instructions for each option are explained below.
22-
23-
### Overriding/Patching a package
24-
25-
Purpose:
26-
- Change a package's dependency to a newer/older release than the
27-
default package set's release
28-
- Use your own modified version of some dependency that may
29-
include new API, changed API, removed API by
30-
using your custom git repo of the library rather than
31-
the package set's repo
32-
33-
Syntax:
34-
where `entityName` is one of the following:
35-
- dependencies
36-
- repo
37-
- version
38-
-------------------------------
39-
let upstream = --
40-
in upstream
41-
with packageName.entityName = "new value"
42-
-------------------------------
43-
44-
Example:
45-
-------------------------------
46-
let upstream = --
47-
in upstream
48-
with halogen.version = "master"
49-
with halogen.repo = "https://example.com/path/to/git/repo.git"
50-
51-
with halogen-vdom.version = "v4.0.0"
52-
-------------------------------
53-
54-
### Additions
55-
56-
Purpose:
57-
- Add packages that aren't already included in the default package set
58-
59-
Syntax:
60-
where `<version>` is:
61-
- a tag (i.e. "v4.0.0")
62-
- a branch (i.e. "master")
63-
- commit hash (i.e. "701f3e44aafb1a6459281714858fadf2c4c2a977")
64-
-------------------------------
65-
let upstream = --
66-
in upstream
67-
with new-package-name =
68-
{ dependencies =
69-
[ "dependency1"
70-
, "dependency2"
71-
]
72-
, repo =
73-
"https://example.com/path/to/git/repo.git"
74-
, version =
75-
"<version>"
76-
}
77-
-------------------------------
78-
79-
Example:
80-
-------------------------------
81-
let upstream = --
82-
in upstream
83-
with benchotron =
84-
{ dependencies =
85-
[ "arrays"
86-
, "exists"
87-
, "profunctor"
88-
, "strings"
89-
, "quickcheck"
90-
, "lcg"
91-
, "transformers"
92-
, "foldable-traversable"
93-
, "exceptions"
94-
, "node-fs"
95-
, "node-buffer"
96-
, "node-readline"
97-
, "datetime"
98-
, "now"
99-
]
100-
, repo =
101-
"https://github.com/hdgarrood/purescript-benchotron.git"
102-
, version =
103-
"v7.0.0"
104-
}
105-
-------------------------------
106-
-}
1071
let upstream =
108-
https://github.com/purescript/package-sets/releases/download/psc-0.15.0-20220522/packages.dhall
109-
sha256:43895efaec7af246b60b59cfbf451cd9d3d84a5327de8c0945e2de5c9fd2fcf2
2+
https://github.com/purescript/package-sets/releases/download/psc-0.15.4-20220722/packages.dhall
3+
sha256:6e0ce13384910a706580b0e17eea6d17a859a65b87dc76a28d085d7ebca32ef3
1104

1115
in upstream
112-

0 commit comments

Comments
 (0)