Skip to content

Commit e680e51

Browse files
authored
[tapable] fix test, bump to 2.3.0 (DefinitelyTyped#73806)
1 parent 2b3eb5f commit e680e51

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

types/tapable/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"private": true,
33
"name": "@types/tapable",
4-
"version": "2.2.9999",
4+
"version": "2.3.9999",
55
"projects": [
66
"https://github.com/webpack/tapable.git"
77
],
88
"dependencies": {
9-
"tapable": "^2.2.0"
9+
"tapable": "^2.3.0"
1010
},
1111
"devDependencies": {
1212
"@types/tapable": "workspace:."

types/tapable/tapable-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
import { HookFactory } from "tapable";
2-
const hf: HookFactory<boolean> = (key, hook) => !!hook;
2+
const hf: HookFactory<boolean> = (key) => !!key;

0 commit comments

Comments
 (0)