Skip to content

Commit

Permalink
Add transitive dependencies to spago.yaml (#61)
Browse files Browse the repository at this point in the history
Additionally adds a private package.json for convenient localized
development.
  • Loading branch information
natefaubion authored Jan 26, 2025
1 parent b0a50a0 commit 27560d7
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"private": true,
"devDependencies": {
"purescript": "^0.15.15",
"spago": "^0.93.42"
}
}
22 changes: 20 additions & 2 deletions spago.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
{
"aff": ">=7.0.0 <9.0.0"
},
{
"arrays": ">=7.3.0 <8.0.0"
},
{
"effect": ">=4.0.0 <5.0.0"
},
Expand All @@ -17,6 +20,9 @@
{
"exceptions": ">=6.0.0 <7.0.0"
},
{
"maybe": ">=6.0.0 <7.0.0"
},
{
"node-buffer": ">=9.0.0 <10.0.0"
},
Expand All @@ -28,6 +34,18 @@
},
{
"prelude": ">=6.0.0 <7.0.0"
},
{
"refs": ">=6.0.0 <7.0.0"
},
{
"st": ">=6.2.0 <7.0.0"
},
{
"tailrec": ">=6.1.0 <7.0.0"
},
{
"unsafe-coerce": ">=6.0.0 <7.0.0"
}
],
"build_plan": [
Expand Down Expand Up @@ -740,8 +758,8 @@
},
"spec": {
"type": "registry",
"version": "8.1.0",
"integrity": "sha256-kylPL0sBujW9w8yk+bguI92BiUuiyosPWyp/TTqPURw=",
"version": "8.1.1",
"integrity": "sha256-EM7UfQIaSgiw13LJ4ZASkfYmmRDKIlec3nYbGKFqGhk=",
"dependencies": [
"aff",
"ansi",
Expand Down
10 changes: 8 additions & 2 deletions spago.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@ package:
githubOwner: purescript-node
githubRepo: purescript-node-streams
dependencies:
- aff: ">=7.0.0 <9.0.0"
- arrays: ">=7.3.0 <8.0.0"
- effect: ">=4.0.0 <5.0.0"
- either: ">=6.0.0 <7.0.0"
- exceptions: ">=6.0.0 <7.0.0"
- maybe: ">=6.0.0 <7.0.0"
- node-buffer: ">=9.0.0 <10.0.0"
- node-event-emitter: ">=3.0.0 <4.0.0"
- nullable: ">=6.0.0 <7.0.0"
- prelude: ">=6.0.0 <7.0.0"
- node-event-emitter: ">=3.0.0 <4.0.0"
- aff: ">=7.0.0 <9.0.0"
- refs: ">=6.0.0 <7.0.0"
- st: ">=6.2.0 <7.0.0"
- tailrec: ">=6.1.0 <7.0.0"
- unsafe-coerce: ">=6.0.0 <7.0.0"
test:
main: Test.Main
# See also other tests
Expand Down

0 comments on commit 27560d7

Please sign in to comment.