Skip to content

Releases: allexcd/webpack-clean

1.2.5

27 Apr 21:14
Compare
Choose a tag to compare
  • [Critical]: Fix for Cannot read property 'hasOwnProperty' of undefined bug (#18) found when using WebPack 4.43.0 - thanks to @pratikgolchha
  • Move esm module loader required by ava test runner to devDependencies

1.2.4

25 Apr 17:35
Compare
Choose a tag to compare
  • Update dependencies
  • Include ava configuration in package.json to use the esm module loader

1.2.3

26 Sep 12:53
Compare
Choose a tag to compare
  • add forceDelete option
  • proceed with files deletion in case of compile errors when forceDelete is enabled
  • stop file deletion in case of compile errors when forceDelete is disabled
  • log the compile errors to stdout when forceDelete is disabled instead of throwing them to avoid killing the watchers
  • documentation update (README.md)

1.2.2

07 Jul 11:11
e5da85a
Compare
Choose a tag to compare
  • Checking for Webpack 4 lifecycle hooks in the compiler
  • Fix for DeprecationWarning: Tapable.plugin is deprecated. Use new API on .hooks instead

1.2.1

30 Apr 19:17
Compare
Choose a tag to compare
  • Moved winston-color to dependencies as source code depends on it, thanks to @sheshbabu

1.2.0

29 Apr 14:37
cce5952
Compare
Choose a tag to compare
  • Implemented the optional object to hold named parameters (basePath, removeMaps) with default values
  • Unit testing updates for the optional named parameters object
  • Documentation update (README.md)

1.1.0

29 Apr 13:06
Compare
Choose a tag to compare
  • updated dependencies
  • added yarn.lock file
  • added .editorconfig file
  • added .eslintrc
  • added wallaby.js config for those who use Wallaby.js as an integration testing tool
  • implemented linting using eslint. Can be invoked by: npm run lint or yarn lint
  • implemented unit testing using ava as a test runner (missing functionality unit testing). Can be invoked by: npm run test or yarn test
  • implemented private functions unit testing using rewire
  • updated code logic: removed redundancy code, improved promises usage, converted prototype methods to private functions
  • display INFO message with the removed file name
  • display WARN message if a file that has to be removed does not exist on target
  • display DONE message after the process has ended
  • display colored alerts, using winston-color library