Skip to content

Commit

Permalink
⬆️ deps: Upgrade @iterable-iterator/range to v1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed May 6, 2021
1 parent 275b4b0 commit c69b8c4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"@iterable-iterator/iter": "0.0.2",
"@iterable-iterator/list": "0.0.2",
"@iterable-iterator/next": "1.0.0",
"@iterable-iterator/range": "0.0.1",
"@iterable-iterator/range": "1.0.0",
"@js-library/commitlint-config": "0.0.4",
"ava": "3.15.0",
"babel-plugin-transform-remove-console": "6.9.4",
Expand Down
3 changes: 2 additions & 1 deletion test/src/consume.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import test from 'ava';

import {iter} from '@iterable-iterator/iter';
import {range} from '@iterable-iterator/range';
import {list} from '@iterable-iterator/list';
import {consume} from '../../src/index.js';

test('consume', (t) => {
const iterator = range(100);
const iterator = iter(range(100));

consume(iterator, 37);

Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1264,10 +1264,10 @@
dependencies:
"@failure-abstraction/error" "^5.0.5"

"@iterable-iterator/range@0.0.1":
version "0.0.1"
resolved "https://registry.yarnpkg.com/@iterable-iterator/range/-/range-0.0.1.tgz#44516a8967f9b21546a76ae9c3dbc22e8d782c20"
integrity sha512-fNhvqQLC6xMdbaPrvgDCuUQSHtv9IUDVVAZf2aK7hIEHK6ghd3r5FEX1IYHfDnnXv+zdBfUSr83fg6VB/6/0ug==
"@iterable-iterator/range@1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@iterable-iterator/range/-/range-1.0.0.tgz#5b3255710e3e0d174a82e38024dc2af3c1aeee25"
integrity sha512-rFgziHtzWs/Zl1c5SfkAbUZzXvqvyeMtjsrwdkvXFQ1FCCXmzFjaMOKpr++wFuoV83XzZuiJ6lyHNEd3CSIyTg==

"@js-library/commitlint-config@0.0.4":
version "0.0.4"
Expand Down

0 comments on commit c69b8c4

Please sign in to comment.