Skip to content

Commit d05f697

Browse files
authored
spago next. delete bower.json, package.json. (#57)
1 parent 8aaec35 commit d05f697

File tree

6 files changed

+798
-67
lines changed

6 files changed

+798
-67
lines changed

.github/workflows/ci.yml

+9-19
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,25 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- uses: purescript-contrib/setup-purescript@main
1616
with:
1717
purescript: "unstable"
1818
purs-tidy: "latest"
19-
20-
- uses: actions/setup-node@v3
21-
with:
22-
node-version: "lts/*"
23-
24-
- name: Install dependencies
25-
run: |
26-
npm install -g bower
27-
npm install
28-
bower info purescript-node-buffer --verbose
29-
bower install --production
19+
spago: "unstable"
3020

3121
- name: Build source
32-
run: npm run-script build
22+
run: spago build
3323

3424
- name: Run tests
3525
run: |
36-
bower install
37-
npx pulp test
38-
npx pulp test --main Test.Main1
39-
npx pulp test --main Test.Main2
40-
npx pulp test --main Test.Main3 -- <(head --bytes 1000000 /dev/zero)
41-
npx pulp test --main Test.Main4
26+
set -x
27+
spago test
28+
spago test --main Test.Main1
29+
spago test --main Test.Main2
30+
spago test --main Test.Main3 -- <(head --bytes 1000000 /dev/zero)
31+
spago test --main Test.Main4
4232
4333
- name: Check formatting
4434
run: |

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ Bugfixes:
1212

1313
Other improvements:
1414

15+
## [v10.0.0](https://github.com/purescript-node/purescript-node-streams/releases/tag/v10.0.0) - 2024-09-27
16+
17+
Breaking changes:
18+
19+
- Upgrade dependency `aff`. #57
20+
21+
Other improvements:
22+
23+
- Change build system from `bower` to `spago`. #57
24+
1525
## [v9.0.0](https://github.com/purescript-node/purescript-node-streams/releases/tag/v9.0.0) - 2022-07-26
1626

1727
Breaking changes:
@@ -44,7 +54,7 @@ Breaking changes:
4454
```
4555
- Renamed functions to better adhere to naming consistency (#50 by @JordanMartinez)
4656

47-
All functions that take an optional callback are now
57+
All functions that take an optional callback are now
4858
named using the following schema:
4959
- no callback: `functionName`
5060
- with callback: `functionName'`
@@ -80,7 +90,7 @@ New features:
8090
Convenience APIs for writeable streams:
8191
- write
8292
- end
83-
93+
8494
Convenience APIs for converting `String`s from/to `Array Buffer`
8595
- toStringUTF8
8696
- fromStringUTF8

bower.json

-30
This file was deleted.

package.json

-16
This file was deleted.

0 commit comments

Comments
 (0)