Releases: webpack/tapable
Releases · webpack/tapable
v2.2.1
v2.2.0
v2.1.1
v2.1.0
v2.0.0
Features
- Ship with typings
- add
name
argument to give a Hook a name - add
done
,result
anderror
intercept points to theintercept
API
Bugfixes
- Avoid stack overflow while series hook compilation
- Exclude tests from npm package
- remove duplicate semicolon in generated code
- fixes a stack overflow when adding too many plugins to a sync hook
Performance
- refactor hooks to reduce number of hidden maps in methods
Deprecations
- remove deprecated Tapable class
- Deprecate
context
option - Deprecate
tap
etc. forHookMap
Internal
- Upgrade dev dependencies
- Add linting step to CI
v2.0.0-beta.11
Bugfixes
- fixes a stack overflow when adding too many plugins to a sync hook
v2.0.0-beta.10
Bugfixes
- fix null and undefined types for callbacks
- remove duplicate semicolon in generated code
v2.0.0-beta.9
Features
- add
done
,result
anderror
intercept points to theintercept
API
v2.0.0-beta.8
Features
- All Hooks, HookMap and MultiHook now have
name
arguments in the constructor. name
is a public property for all Hooks, HookMap and MultiHook
v2.0.0-beta.7
Features
- add
name
property to Hook interface