-
Notifications
You must be signed in to change notification settings - Fork 7
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
feat!: convert to typescript #21
feat!: convert to typescript #21
Conversation
- Converts to typescript - Only named exports - No more CJS, only ESM - Uses aegir for building/testing/publishing - Publishes with provenance - Publishes API docs - Switches travis for GitHub CI - Updates deps Similar in scope to alanshaw/it-ws#6 etc
CI hasn't run here because I can't push branches to this repo so the PR comes from a fork.. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -12,7 +12,7 @@ | |||
const fs = require('fs') | |||
const os = require('os') | |||
const toIterable = require('../') | |||
const pipe = require('it-pipe') | |||
import { pipe } from 'it-pipe' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs some more love? i.e. convert the require
s
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
Fixes errors introduced during alanshaw#21
Fixes errors introduced during alanshaw#21
Fixes errors introduced during alanshaw#21
Fixes errors introduced during alanshaw#21
## [1.0.0](v0.2.4...v1.0.0) (2024-04-08) ### ⚠ BREAKING CHANGES * convert to typescript (#21) ### Features * convert to typescript ([#21](#21)) ([afedf8b](afedf8b)) ### Bug Fixes * fix types and linting ([#22](#22)) ([ceae18f](ceae18f)) * update repo paths in package.json ([#23](#23)) ([059ccc5](059ccc5))
🎉 This PR is included in version 1.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Similar in scope to alanshaw/it-ws#6 etc