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

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
igorklopov committed Dec 7, 2019
1 parent 7ff6430 commit 89a1a49
Show file tree
Hide file tree
Showing 5 changed files with 1,341 additions and 1,158 deletions.
2 changes: 2 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable require-atomic-updates */

import { exists, mkdirp, readFile, remove, stat } from 'fs-extra';
import { log, wasReported } from './log.js';
import { need, system } from 'pkg-fetch';
Expand Down
4 changes: 2 additions & 2 deletions lib/producer.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { STORE_BLOB, STORE_CONTENT, snapshotify } from '../prelude/common.js';
import { log, wasReported } from './log.js';
import Multistream from 'multistream';
import assert from 'assert';
import { fabricateTwice } from './fabricator.js';
import fs from 'fs';
import intoStream from 'into-stream';
import multistream from 'multistream';
import streamMeter from 'stream-meter';

function discoverPlaceholder (binaryBuffer, searchString, padder) {
Expand Down Expand Up @@ -115,7 +115,7 @@ export default function ({ backpack, bakes, slash, target }) {
let preludePosition;
let preludeSize;

multistream((cb) => {
new Multistream((cb) => {
if (count === 0) {
return cb(undefined, next(
intoStream(binaryBuffer)
Expand Down
2 changes: 2 additions & 0 deletions lib/walker.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable require-atomic-updates */

import { ALIAS_AS_RELATIVE, ALIAS_AS_RESOLVABLE,
STORE_BLOB, STORE_CONTENT, STORE_LINKS, STORE_STAT,
isDotJS, isDotJSON, isDotNODE, isPackageJson, normalizePath
Expand Down
47 changes: 24 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,32 +30,33 @@
]
},
"dependencies": {
"@babel/parser": "~7.4.4",
"@babel/runtime": "~7.4.4",
"chalk": "~2.4.2",
"escodegen": "~1.11.1",
"fs-extra": "~7.0.1",
"globby": "~9.2.0",
"into-stream": "~5.1.0",
"minimist": "~1.2.0",
"multistream": "~2.1.1",
"pkg-fetch": "~2.6.2",
"progress": "~2.0.3",
"@babel/parser": "^7.7.5",
"@babel/runtime": "^7.7.5",
"chalk": "^3.0.0",
"escodegen": "^1.12.0",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"into-stream": "^5.1.1",
"minimist": "^1.2.0",
"multistream": "^2.1.1",
"pkg-fetch": "^2.6.3",
"progress": "^2.0.3",
"resolve": "1.6.0",
"stream-meter": "~1.0.4"
"stream-meter": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "~7.4.4",
"@babel/core": "~7.4.4",
"@babel/plugin-transform-async-to-generator": "~7.4.4",
"@babel/plugin-transform-runtime": "~7.4.4",
"@babel/preset-env": "~7.4.4",
"@babel/register": "~7.4.4",
"babel-eslint": "~10.0.1",
"eslint-config-klopov": "~0.13.0",
"json-stable-stringify": "~1.0.1",
"mkdirp": "~0.5.1",
"rimraf": "~2.6.3"
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-async-to-generator": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.5",
"@babel/preset-env": "^7.7.5",
"@babel/register": "^7.7.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-config-klopov": "^1.0.2",
"json-stable-stringify": "^1.0.1",
"mkdirp": "^0.5.1",
"rimraf": "^3.0.0"
},
"scripts": {
"babel": "node test/rimraf-es5.js && babel lib --out-dir lib-es5",
Expand Down
Loading

0 comments on commit 89a1a49

Please sign in to comment.