Skip to content

Commit

Permalink
[Deps] update tape
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 22, 2022
1 parent 0a9bd16 commit f3ca01e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/cmd.js
Expand Up @@ -2,8 +2,8 @@
var faucet = require('../');
var minimist = require('minimist');
var defined = require('defined');
var which = require('npm-which')(process.cwd());
var tapeCmd = which.sync('tape');
var which = require('npm-which');
var tapeCmd = which.sync('tape', { cwd: process.cwd() });

var spawn = require('child_process').spawn;
var fs = require('fs');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -10,10 +10,10 @@
"defined": "^0.0.0",
"duplexer": "~0.1.1",
"minimist": "^0.0.5",
"npm-which": "^3.0.1",
"npm-which": "^1.0.2",
"sprintf": "~0.1.3",
"tap-parser": "~0.4.0",
"tape": "~2.3.2",
"tape": "^5.6.1",
"through2": "~0.2.3"
},
"repository": {
Expand Down

0 comments on commit f3ca01e

Please sign in to comment.