Skip to content

Commit a3c64e1

Browse files
dependabot[bot]vio
authored andcommitted
build(deps): bump stream-json from 1.9.1 to 2.1.0
Bumps [stream-json](https://github.com/uhop/stream-json) from 1.9.1 to 2.1.0. - [Commits](uhop/stream-json@1.9.1...2.1.0) --- updated-dependencies: - dependency-name: stream-json dependency-version: 2.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent efdd91f commit a3c64e1

3 files changed

Lines changed: 10 additions & 13 deletions

File tree

package-lock.json

Lines changed: 8 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"find-cache-dir": "^3.1.0",
4444
"lodash": "^4.18.1",
4545
"stream-chain": "^3.6.1",
46-
"stream-json": "^1.8.0"
46+
"stream-json": "^2.1.0"
4747
},
4848
"devDependencies": {
4949
"@types/find-cache-dir": "^3.2.1",

packages/cli-utils/src/fs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createReadStream } from 'fs';
22
import { parser } from 'stream-json';
33
import { chain } from 'stream-chain';
4-
import Asm from 'stream-json/Assembler';
4+
import Asm from 'stream-json/assembler';
55

66
export const readJSONStream = <T = unknown>(filepath: string): Promise<T> => {
77
const pipeline = chain([createReadStream(filepath), parser()]);

0 commit comments

Comments
 (0)