Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 3 roky
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. ## v0.4.14
  2. * [Add support for `reportFiles` option](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/179) (#179)
  3. ## v0.4.13
  4. * [Merge in `compilerOptions` prior to calling `parseJsonConfigFileContent`](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/176) (#176)
  5. ## v0.4.12
  6. * [Add `compilerOptions` option](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/173) (#173)
  7. ## v0.4.11
  8. * [Fix os.cpus is not a function](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/172) (#172)
  9. ## v0.4.10
  10. * [Allow fork-ts-checker-webpack-plugin to be imported in .ts files using ESM import syntax](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/163) (#163)
  11. ## v0.4.9
  12. * [Set "compilationDone" before resolving "forkTsCheckerServiceBeforeStart"](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/146) (#146)
  13. ## v0.4.8
  14. * [Fix(types collision): update webpack](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/151) (#142)
  15. ## v0.4.7
  16. * [Fix(types collision): update chalk and chokidar](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/147) (#142)
  17. * [Fix(logger): Don't limit Options.logger to Console type](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/143)
  18. ## v0.4.6
  19. * [Fix(types): Make options Partial<Options>](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/141) (#140)
  20. ## v0.4.5
  21. * [Fix(types): Add types to the plugin](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/139) (#137)
  22. * [Fix(vue): Avoid false positive of no-consecutive-blank-lines TSLint rule in Vue file](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/138) (#130)
  23. ## v0.4.4
  24. * [Fix(vue): resolve src attribute on the script block on Vue files](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/130) (#111, #85)
  25. * Add TypeScript ^3.0.0 to peerDependencies
  26. ## v0.4.3
  27. * Fix "File system lag can cause Invalid source file errors to slip through" (#127)
  28. ## v0.4.2
  29. * Format messages when `async` is false
  30. ## v0.4.1
  31. * Fix webpack 4 hooks bug
  32. ## v0.4.0
  33. * Support webpack 4
  34. ## v0.3.0
  35. * Add `vue` support
  36. ## v0.2.10
  37. * Fix #80 "Cannot read property 'getLineAndCharacterOfPosition' of undefined"
  38. * Fix #76 "TypeError: Cannot read property '0' of undefined"
  39. ## v0.2.9
  40. * Make errors formatting closer to `ts-loader` style
  41. * Handle tslint exclude option
  42. ## v0.2.8
  43. * Add `checkSyntacticErrors` option
  44. * Fix `process.env` pass to the child process
  45. * Add `fork-ts-checker-service-before-start` hook
  46. ## v0.2.7
  47. * Fix service is not killed when webpack watch is done
  48. ## v0.2.6
  49. * Add diagnostics/lints formatters - `formatter` and `formatterOptions` option
  50. ## v0.2.5
  51. * Add `async` option - more information in `README.md`
  52. ## v0.2.4
  53. * Fix `ESLint: "fork-ts-checker-webpack-plugin" is not published.` issue
  54. ## v0.2.3
  55. * Add support for webpack 3 as peerDependency
  56. ## v0.2.2
  57. * Force `isolatedModule: false` in checker compiler for better performance
  58. ## v0.2.1
  59. * Fix for `tslint: true` option issue
  60. ## v0.2.0
  61. * tsconfig.json and tslint.json path are not printed anymore.
  62. * `watch` option is not used on 'build' mode
  63. * Handle case with no options object (`new ForkTsCheckerWebpacPlugin()`)
  64. * Basic integration tests (along units)
  65. * **Breaking changes**:
  66. * tslint is not enabled by default - you have to set `tslint: true` or `tslint: './path/to/tslint.json'` to enable it.
  67. * `blockEmit` option is removed - it choose automatically - blocks always on 'build' mode, never on 'watch' mode.
  68. ## v0.1.5
  69. * Disable tslint if module is not installed and no tslint path is passed
  70. * Improve README.md
  71. ## v0.1.4
  72. * Fix send to closed channel case
  73. * Fix removed files case
  74. * Add `fork-ts-checker-service-start-error` hook
  75. ## v0.1.3
  76. * Fix "Cannot read property 'mtime' of undefined on OSX"
  77. ## v0.1.2
  78. * Workers mode works correctly (fixed typo)
  79. ## v0.1.1
  80. * Support memory limit in multi-process mode
  81. * Handle already closed channel case on sending ipc message
  82. ## v0.1.0
  83. * Initial release - not production ready.