Skip to content

Commit

Permalink
⬆️ deps: Upgrade.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Dec 23, 2021
1 parent 8e8eaed commit 217b8ec
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
"test:src": "IMPORT_MAP_PATH=test/import-maps/src/index.json npm run test-cmd"
},
"dependencies": {
"@async-abstraction/tape": "^9.0.0",
"@async-abstraction/tape": "^10.0.0",
"@async-iterable-iterator/async-iterable-to-array": "^0.0.1",
"@formal-language/grammar": "^9.1.1",
"@iterable-iterator/chain": "^2.0.1",
"@iterable-iterator/map": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/parseBundle.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import assert from 'node:assert';
import * as tape from '@async-abstraction/tape';
import {asyncIterableToArray} from '@async-abstraction/tape';
import {asyncIterableToArray} from '@async-iterable-iterator/async-iterable-to-array';
import {ll1, ast} from '@formal-language/grammar';

import tokens from './tokens.js';
Expand Down
3 changes: 2 additions & 1 deletion src/stringifyBundle.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {asyncIterableToArray, asyncIterableMap} from '@async-abstraction/tape';
import {asyncIterableMap} from '@async-abstraction/tape';
import {asyncIterableToArray} from '@async-iterable-iterator/async-iterable-to-array';

const lines = async function* (documents) {
for await (const {header, reports, footer} of documents) {
Expand Down
2 changes: 1 addition & 1 deletion test/data/initialize.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'regenerator-runtime/runtime.js';
import process from 'node:process';
import {readFile, writeFile} from 'node:fs/promises';
import path from 'node:path';
import {asyncIterableToArray} from '@async-abstraction/tape';
import {asyncIterableToArray} from '@async-iterable-iterator/async-iterable-to-array';
import {list} from '@iterable-iterator/list';
import {map} from '@iterable-iterator/map';

Expand Down
2 changes: 1 addition & 1 deletion test/src/json.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';

import {asyncIterableToArray} from '@async-abstraction/tape';
import {asyncIterableToArray} from '@async-iterable-iterator/async-iterable-to-array';

import {parse} from '../../src/index.js';

Expand Down
22 changes: 18 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,24 @@
# yarn lockfile v1


"@async-abstraction/tape@^9.0.0":
version "9.0.0"
resolved "https://registry.yarnpkg.com/@async-abstraction/tape/-/tape-9.0.0.tgz#d9467708be72fe66b5620e69ea6fb4649104f3b8"
integrity sha512-DeSB4JKI1G9F1rq8MGJKLkLlOMApRaBOm2wDfNT9aLWhbcI/ZcA7Jmn6cA4KGlFm499/h5V1TbhHO2UcNPaJig==
"@async-abstraction/tape@^10.0.0":
version "10.0.0"
resolved "https://registry.yarnpkg.com/@async-abstraction/tape/-/tape-10.0.0.tgz#317b2d9ea396c4e556cfc20540fdc58bef04e22a"
integrity sha512-XOOVTL6j7uqoKxP4a3JDhKAhbYYupdCF99C9e+Oa3RbI4eShb8eEZueBIFP2tSrOzB+lZcLGQzyHotV1r6QJDg==
dependencies:
"@async-iterable-iterator/async-iterable-to-array" "^0.0.1"

"@async-iterable-iterator/async-iterable-to-array@^0.0.1":
version "0.0.1"
resolved "https://registry.yarnpkg.com/@async-iterable-iterator/async-iterable-to-array/-/async-iterable-to-array-0.0.1.tgz#919786e9394d3530dbfa47325d2eb405c29b2413"
integrity sha512-KkKdBzXTi5saccAsxEXWTCi4ZvehZX0PKRF2crCa4URFMp4VG5pAgmauB3CuLvF3wPrp8AwsGV1QAfJy/zgTEA==
dependencies:
"@async-iterable-iterator/async-iterator-to-array" "^0.0.1"

"@async-iterable-iterator/async-iterator-to-array@^0.0.1":
version "0.0.1"
resolved "https://registry.yarnpkg.com/@async-iterable-iterator/async-iterator-to-array/-/async-iterator-to-array-0.0.1.tgz#4bbd362eb42586812f79e07fea8f8c58feeaeacd"
integrity sha512-VaFBhYBdTJ4DdVblOmZRjDMzPFzf46lm/hA7rMqWYguArQHho0wGe8gADpraXqD2REwGL0q/FvO8cnZ9+rMoUQ==

"@babel/[email protected]":
version "7.16.0"
Expand Down

0 comments on commit 217b8ec

Please sign in to comment.