Skip to content

Commit

Permalink
Switch tap-render out with @munter/tap-render
Browse files Browse the repository at this point in the history
  • Loading branch information
Munter committed Aug 28, 2019
1 parent 16da9e0 commit 080b566
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ if (commandLineOptions._.length > 0) {
process.exit(1);
}

const TapRender = require('tap-render');
const TapRender = require('@munter/tap-render');
const hyperlink = require('./index');

const skipFilter = report =>
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function returnFalse() {
}

/**
* A tap-render instance (https://www.npmjs.com/package/tap-render)
* A tap-render instance (https://www.npmjs.com/package/@munter/tap-render)
*
* @typedef {Object} TapRender
* @property {function} pipe
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
],
"homepage": "https://github.com/Munter/hyperlink",
"dependencies": {
"@munter/tap-render": "^0.2.0",
"assetgraph": "^6.0.0",
"async": "^3.1.0",
"optimist": "^0.6.1",
"pretty-bytes": "^5.2.0",
"request": "^2.88.0",
"tap-render": "Munter/tap-render#0.1.7-patch4",
"urltools": "^0.4.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/default-skips.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const expect = require('unexpected')
.use(require('unexpected-sinon'));
const hyperlink = require('../lib/');
const httpception = require('httpception');
const TapRender = require('tap-render');
const TapRender = require('@munter/tap-render');
const sinon = require('sinon');

describe('default-skips', function() {
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const expect = require('unexpected')
.use(require('unexpected-sinon'));
const hyperlink = require('../lib/');
const httpception = require('httpception');
const TapRender = require('tap-render');
const TapRender = require('@munter/tap-render');
const sinon = require('sinon');
const pathModule = require('path');

Expand Down

0 comments on commit 080b566

Please sign in to comment.