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

Package size optimization #48

Merged
merged 2 commits into from
Mar 3, 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
4 changes: 2 additions & 2 deletions .github/workflows/test_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
node-version: [14.x, 16.x, 17.x, 18.x, 19.x, 20.x, 21.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# IterTools Typescript Change Log

## v1.27.1 - 2024-03-03

Package Size Optimization.

## v1.27.0 - 2023-11-13

### New features
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "itertools-ts",
"version": "1.27.0",
"version": "1.27.1",
"description": "Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones)",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -32,8 +32,7 @@
"es",
"lib",
"src",
"tests/stream",
"tests/async-stream",
"tests/examples",
"tests/fixture.ts",
"tests/tools"
],
Expand Down
2 changes: 1 addition & 1 deletion src/async-stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ export class AsyncStream {
*
* @see summary.exactlyNAsync
*/
async exactlyNAsync(
async exactlyN(
n: number,
predicate?: (item: unknown) => Promise<boolean> | boolean
): Promise<boolean> {
Expand Down
Loading
Loading