Skip to content
Open
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
2 changes: 1 addition & 1 deletion .electron-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
38.0.0-beta.6
39.2.1
4 changes: 2 additions & 2 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
fail-fast: false
matrix:
os:
- macos-13-xlarge
- macos-14-xlarge
- ubuntu-22.04
- ubuntu-22.04-arm
env:
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
fail-fast: false
matrix:
os:
- macos-13-xlarge
- macos-14-xlarge
- ubuntu-22.04
- ubuntu-22.04-arm
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
fail-fast: false
matrix:
os:
- macos-13-xlarge
- macos-14-xlarge
- ubuntu-22.04
- ubuntu-22.04-arm
env:
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
fail-fast: false
matrix:
os:
- macos-13-xlarge
- macos-14-xlarge
- ubuntu-22.04
- ubuntu-22.04-arm
env:
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.18.0
22.21.1
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

3 changes: 1 addition & 2 deletions lib/Curl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,7 @@ class Curl extends EventEmitter {
protected streamPauseNext = false
protected streamContinueNext = false
protected streamError: false | Error = false
protected streamUserSuppliedProgressFunction: CurlOptionValueType['xferInfoFunction'] =
null
protected streamUserSuppliedProgressFunction: CurlOptionValueType['xferInfoFunction'] = null

/**
* @param cloneHandle {@link "Easy".Easy | `Easy`} handle that should be used instead of creating a new one.
Expand Down
2 changes: 1 addition & 1 deletion lib/curly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const methods = [
'unsubscribe',
] as const

type HttpMethod = (typeof methods)[number]
type HttpMethod = typeof methods[number]

export type CurlyResponseBodyParser = (
data: Buffer,
Expand Down
Loading
Loading