File tree 6 files changed +1302
-67
lines changed
6 files changed +1302
-67
lines changed Original file line number Diff line number Diff line change @@ -10,35 +10,25 @@ jobs:
10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
15
15
- uses : purescript-contrib/setup-purescript@main
16
16
with :
17
17
purescript : " unstable"
18
18
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"
30
20
31
21
- name : Build source
32
- run : npm run-script build
22
+ run : spago build
33
23
34
24
- name : Run tests
35
25
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
42
32
43
33
- name : Check formatting
44
34
run : |
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ Bugfixes:
12
12
13
13
Other improvements:
14
14
15
+ ## v9.0.1
16
+
17
+ Other improvements:
18
+
19
+ - Change build system from ` bower ` to ` spago ` . #57
20
+
15
21
## [ v9.0.0] ( https://github.com/purescript-node/purescript-node-streams/releases/tag/v9.0.0 ) - 2022-07-26
16
22
17
23
Breaking changes:
@@ -44,7 +50,7 @@ Breaking changes:
44
50
```
45
51
- Renamed functions to better adhere to naming consistency (#50 by @JordanMartinez )
46
52
47
- All functions that take an optional callback are now
53
+ All functions that take an optional callback are now
48
54
named using the following schema:
49
55
- no callback: ` functionName `
50
56
- with callback: ` functionName' `
@@ -80,7 +86,7 @@ New features:
80
86
Convenience APIs for writeable streams:
81
87
- write
82
88
- end
83
-
89
+
84
90
Convenience APIs for converting ` String ` s from/to ` Array Buffer `
85
91
- toStringUTF8
86
92
- fromStringUTF8
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments