Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spago next #57

Merged
merged 1 commit into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 9 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,25 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: purescript-contrib/setup-purescript@main
with:
purescript: "unstable"
purs-tidy: "latest"

- uses: actions/setup-node@v3
with:
node-version: "lts/*"

- name: Install dependencies
run: |
npm install -g bower
npm install
bower info purescript-node-buffer --verbose
bower install --production
spago: "unstable"

- name: Build source
run: npm run-script build
run: spago build

- name: Run tests
run: |
bower install
npx pulp test
npx pulp test --main Test.Main1
npx pulp test --main Test.Main2
npx pulp test --main Test.Main3 -- <(head --bytes 1000000 /dev/zero)
npx pulp test --main Test.Main4
set -x
spago test
spago test --main Test.Main1
spago test --main Test.Main2
spago test --main Test.Main3 -- <(head --bytes 1000000 /dev/zero)
spago test --main Test.Main4

- name: Check formatting
run: |
Expand Down
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ Bugfixes:

Other improvements:

## [v10.0.0](https://github.com/purescript-node/purescript-node-streams/releases/tag/v10.0.0) - 2024-09-27

Breaking changes:

- Upgrade dependency `aff`. #57

Other improvements:

- Change build system from `bower` to `spago`. #57

## [v9.0.0](https://github.com/purescript-node/purescript-node-streams/releases/tag/v9.0.0) - 2022-07-26

Breaking changes:
Expand Down Expand Up @@ -44,7 +54,7 @@ Breaking changes:
```
- Renamed functions to better adhere to naming consistency (#50 by @JordanMartinez)

All functions that take an optional callback are now
All functions that take an optional callback are now
named using the following schema:
- no callback: `functionName`
- with callback: `functionName'`
Expand Down Expand Up @@ -80,7 +90,7 @@ New features:
Convenience APIs for writeable streams:
- write
- end

Convenience APIs for converting `String`s from/to `Array Buffer`
- toStringUTF8
- fromStringUTF8
Expand Down
30 changes: 0 additions & 30 deletions bower.json

This file was deleted.

16 changes: 0 additions & 16 deletions package.json

This file was deleted.

Loading