Skip to content

Commit 39e8101

Browse files
committed
spago next. delete bower.json, package.json.
Upgrade spec, aff
1 parent 274cca3 commit 39e8101

File tree

6 files changed

+1302
-67
lines changed

6 files changed

+1302
-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

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

1313
Other improvements:
1414

15+
## v9.0.1
16+
17+
Other improvements:
18+
19+
- Change build system from `bower` to `spago`. #57
20+
1521
## [v9.0.0](https://github.com/purescript-node/purescript-node-streams/releases/tag/v9.0.0) - 2022-07-26
1622

1723
Breaking changes:
@@ -44,7 +50,7 @@ Breaking changes:
4450
```
4551
- Renamed functions to better adhere to naming consistency (#50 by @JordanMartinez)
4652

47-
All functions that take an optional callback are now
53+
All functions that take an optional callback are now
4854
named using the following schema:
4955
- no callback: `functionName`
5056
- with callback: `functionName'`
@@ -80,7 +86,7 @@ New features:
8086
Convenience APIs for writeable streams:
8187
- write
8288
- end
83-
89+
8490
Convenience APIs for converting `String`s from/to `Array Buffer`
8591
- toStringUTF8
8692
- fromStringUTF8

bower.json

-30
This file was deleted.

package.json

-16
This file was deleted.

0 commit comments

Comments
 (0)