Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 89a1a49

Browse files
committedDec 7, 2019
update dependencies
1 parent 7ff6430 commit 89a1a49

File tree

5 files changed

+1341
-1158
lines changed

5 files changed

+1341
-1158
lines changed
 

‎lib/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* eslint-disable require-atomic-updates */
2+
13
import { exists, mkdirp, readFile, remove, stat } from 'fs-extra';
24
import { log, wasReported } from './log.js';
35
import { need, system } from 'pkg-fetch';

‎lib/producer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { STORE_BLOB, STORE_CONTENT, snapshotify } from '../prelude/common.js';
22
import { log, wasReported } from './log.js';
3+
import Multistream from 'multistream';
34
import assert from 'assert';
45
import { fabricateTwice } from './fabricator.js';
56
import fs from 'fs';
67
import intoStream from 'into-stream';
7-
import multistream from 'multistream';
88
import streamMeter from 'stream-meter';
99

1010
function discoverPlaceholder (binaryBuffer, searchString, padder) {
@@ -115,7 +115,7 @@ export default function ({ backpack, bakes, slash, target }) {
115115
let preludePosition;
116116
let preludeSize;
117117

118-
multistream((cb) => {
118+
new Multistream((cb) => {
119119
if (count === 0) {
120120
return cb(undefined, next(
121121
intoStream(binaryBuffer)

‎lib/walker.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* eslint-disable require-atomic-updates */
2+
13
import { ALIAS_AS_RELATIVE, ALIAS_AS_RESOLVABLE,
24
STORE_BLOB, STORE_CONTENT, STORE_LINKS, STORE_STAT,
35
isDotJS, isDotJSON, isDotNODE, isPackageJson, normalizePath

‎package.json

+24-23
Original file line numberDiff line numberDiff line change
@@ -30,32 +30,33 @@
3030
]
3131
},
3232
"dependencies": {
33-
"@babel/parser": "~7.4.4",
34-
"@babel/runtime": "~7.4.4",
35-
"chalk": "~2.4.2",
36-
"escodegen": "~1.11.1",
37-
"fs-extra": "~7.0.1",
38-
"globby": "~9.2.0",
39-
"into-stream": "~5.1.0",
40-
"minimist": "~1.2.0",
41-
"multistream": "~2.1.1",
42-
"pkg-fetch": "~2.6.2",
43-
"progress": "~2.0.3",
33+
"@babel/parser": "^7.7.5",
34+
"@babel/runtime": "^7.7.5",
35+
"chalk": "^3.0.0",
36+
"escodegen": "^1.12.0",
37+
"fs-extra": "^8.1.0",
38+
"globby": "^10.0.1",
39+
"into-stream": "^5.1.1",
40+
"minimist": "^1.2.0",
41+
"multistream": "^2.1.1",
42+
"pkg-fetch": "^2.6.3",
43+
"progress": "^2.0.3",
4444
"resolve": "1.6.0",
45-
"stream-meter": "~1.0.4"
45+
"stream-meter": "^1.0.4"
4646
},
4747
"devDependencies": {
48-
"@babel/cli": "~7.4.4",
49-
"@babel/core": "~7.4.4",
50-
"@babel/plugin-transform-async-to-generator": "~7.4.4",
51-
"@babel/plugin-transform-runtime": "~7.4.4",
52-
"@babel/preset-env": "~7.4.4",
53-
"@babel/register": "~7.4.4",
54-
"babel-eslint": "~10.0.1",
55-
"eslint-config-klopov": "~0.13.0",
56-
"json-stable-stringify": "~1.0.1",
57-
"mkdirp": "~0.5.1",
58-
"rimraf": "~2.6.3"
48+
"@babel/cli": "^7.7.5",
49+
"@babel/core": "^7.7.5",
50+
"@babel/plugin-transform-async-to-generator": "^7.7.4",
51+
"@babel/plugin-transform-runtime": "^7.7.5",
52+
"@babel/preset-env": "^7.7.5",
53+
"@babel/register": "^7.7.4",
54+
"babel-eslint": "^10.0.3",
55+
"eslint": "^6.7.2",
56+
"eslint-config-klopov": "^1.0.2",
57+
"json-stable-stringify": "^1.0.1",
58+
"mkdirp": "^0.5.1",
59+
"rimraf": "^3.0.0"
5960
},
6061
"scripts": {
6162
"babel": "node test/rimraf-es5.js && babel lib --out-dir lib-es5",

‎yarn.lock

+1,311-1,133
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
This repository has been archived.