⚠️ Next versions are available only on the GitHub Releases page ⚠️
1.3.0-beta.1 (2019-04-30)
- tests: fix linter tests that were doing nothing (d078278)
- tests: linter tests - useTypescriptIncrementalApi usage (e0020d6)
- tests: rework vue integration tests (5ad2568)
1.2.0 (2019-04-22)
- semantic-release update
CHANGELOG.md
on the git repo (8ad58af)
- add semantic-release integration (5fe0653)
1.2.0-beta.4 (2019-04-23)
- tests: fix linter tests that were doing nothing (d078278)
- tests: linter tests - useTypescriptIncrementalApi usage (e0020d6)
1.2.0-beta.3 (2019-04-22)
- tests: rework vue integration tests (5ad2568)
1.2.0-beta.2 (2019-04-22)
- semantic-release update
CHANGELOG.md
on the git repo (8ad58af)
1.2.0-beta.1 (2019-04-22)
- add semantic-release integration (5fe0653)
This is the first major version of fork-ts-checker-webpack-plugin
. A long time coming :-)
There are actually no breaking changes that we're aware of; users of 0.x fork-ts-checker-webpack-plugin
should be be able to upgrade without any drama. Users of TypeScript 3+ may notice a performance improvement as by default the plugin now uses the incremental watch API in TypeScript. Should this prove problematic you can opt out of using it by supplying useTypescriptIncrementalApi: false
.
We are aware of an issue with Vue and the incremental API. We hope it will be fixed soon - a generous member of the community is taking a look. In the meantime, we will not default to using the incremental watch API when in Vue mode.
The plugin supports webpack 2, 3, 4 and 5 alpha and TypeScript 2.1+ alongside tslint 4+.
See also: https://johnnyreilly.com/2019/03/06/fork-ts-checker-webpack-plugin-v1
Version 1.x
additionally supports webpack 5 alongside webpack 4, whose hooks are now tapped differently:
- compiler.hooks.forkTsCheckerDone.tap(...args)
+ const forkTsCheckerHooks = ForkTsCheckerWebpackPlugin.getCompilerHooks(compiler)
+ forkTsCheckerHooks.done.tap(...args)
v1.0.0-alpha.0 drops support for node 6.
- Removed unused dependency
resolve
. - Replace
lodash
usage with native calls. - ** Breaking Changes**:
- Removed all getters from
NormalizedMessage
, use direct property access instead.
- Removed all getters from
- Internal:
- Test against ts-loader v5
- Enable all strict type checks
- Update dev dependencies
- Add
compilerOptions
option (#173)
- Fix(types collision): update chalk and chokidar (#142)
- Fix(logger): Don't limit Options.logger to Console type
- Fix(types): Add types to the plugin (#137)
- Fix(vue): Avoid false positive of no-consecutive-blank-lines TSLint rule in Vue file (#130)
- Fix(vue): resolve src attribute on the script block on Vue files (#111, #85)
- Add TypeScript ^3.0.0 to peerDependencies
- Fix "File system lag can cause Invalid source file errors to slip through" (#127)
- Format messages when
async
is false
- Fix webpack 4 hooks bug
- Support webpack 4
- Add
vue
support
- Fix #80 "Cannot read property 'getLineAndCharacterOfPosition' of undefined"
- Fix #76 "TypeError: Cannot read property '0' of undefined"
- Make errors formatting closer to
ts-loader
style - Handle tslint exclude option
- Add
checkSyntacticErrors
option - Fix
process.env
pass to the child process - Add
fork-ts-checker-service-before-start
hook
- Fix service is not killed when webpack watch is done
- Add diagnostics/lints formatters -
formatter
andformatterOptions
option
- Add
async
option - more information inREADME.md
- Fix
ESLint: "fork-ts-checker-webpack-plugin" is not published.
issue
- Add support for webpack 3 as peerDependency
- Force
isolatedModule: false
in checker compiler for better performance
- Fix for
tslint: true
option issue
- tsconfig.json and tslint.json path are not printed anymore.
watch
option is not used on 'build' mode- Handle case with no options object (
new ForkTsCheckerWebpacPlugin()
) - Basic integration tests (along units)
- Breaking changes:
- tslint is not enabled by default - you have to set
tslint: true
ortslint: './path/to/tslint.json'
to enable it. blockEmit
option is removed - it choose automatically - blocks always on 'build' mode, never on 'watch' mode.
- tslint is not enabled by default - you have to set
- Disable tslint if module is not installed and no tslint path is passed
- Improve README.md
- Fix send to closed channel case
- Fix removed files case
- Add
fork-ts-checker-service-start-error
hook
- Fix "Cannot read property 'mtime' of undefined on OSX"
- Workers mode works correctly (fixed typo)
- Support memory limit in multi-process mode
- Handle already closed channel case on sending ipc message
- Initial release - not production ready.