Skip to content

Commit 76680ac

Browse files
author
Trygve Lie
committed
Update dependencies
1 parent 1bfbb55 commit 76680ac

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"prepublishOnly": "npm run build:clean && npm run build",
3434
"build": "rollup --config",
3535
"build:clean": "rimraf dist",
36-
"test": "tap --no-esm test/*.js",
36+
"test": "tap test/*.js",
3737
"lint": "eslint . --ignore-pattern '/dist/'",
3838
"lint:fix": "eslint --fix . --ignore-pattern '/dist/'",
3939
"precommit": "lint-staged"
@@ -43,20 +43,20 @@
4343
},
4444
"devDependencies": {
4545
"@babel/core": "7.15.5",
46-
"@babel/preset-env": "7.15.4",
46+
"@babel/preset-env": "7.15.6",
4747
"@rollup/plugin-babel": "5.3.0",
4848
"@rollup/plugin-commonjs": "20.0.0",
4949
"@rollup/plugin-node-resolve": "13.0.5",
5050
"eslint": "7.32.0",
5151
"eslint-config-airbnb-base": "14.2.1",
5252
"eslint-config-prettier": "8.3.0",
53-
"eslint-plugin-import": "2.24.1",
53+
"eslint-plugin-import": "2.24.2",
5454
"eslint-plugin-prettier": "4.0.0",
5555
"lint-staged": "11.1.2",
56-
"prettier": "2.3.0",
56+
"prettier": "2.4.1",
5757
"rimraf": "3.0.2",
58-
"rollup": "2.38.5",
59-
"tap": "14.11.0"
58+
"rollup": "2.57.0",
59+
"tap": "15.0.10"
6060
},
6161
"lint-staged": {
6262
"*.js": [

test/MessageBus.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ import MessageBus from '../src/MessageBus.js';
33

44
let bus;
55

6-
tap.beforeEach(end => {
6+
tap.beforeEach(() => {
77
// Need to clear the global between tests for a clean slate
88
// eslint-disable-next-line no-undef
99
globalThis['@podium'] = null;
1010
bus = new MessageBus();
11-
end();
1211
});
1312

1413
tap.test('subscribe() - should be a function', t => {

test/Sink.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ import Sink from '../src/Sink.js';
33

44
let sink;
55

6-
tap.beforeEach(end => {
6+
tap.beforeEach(() => {
77
sink = new Sink();
8-
end();
98
});
109

1110
tap.test('log() - should be a function', t => {

0 commit comments

Comments
 (0)