You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. As of version 2.0.0, the CHANGELOG is maintained on [GitHub Releases](https://github.com/terinjokes/gulp-uglify/releases).
  2. # Change Log
  3. <a name="1.5.4"></a>
  4. ## [1.5.4](https://github.com/terinjokes/gulp-uglify/compare/v1.5.3...v1.5.4) (2016-06-22)
  5. ## 1.5.3
  6. - Updated UglifyJS to 2.6.2
  7. ## 1.5.2
  8. - Updated UglfiyJS to 2.6.1
  9. ## 1.5.0
  10. - Update UglifyJS to 2.6.0.
  11. - CI and dependencies chores.
  12. - Attempt to resolve issue #109 where "ghost" files would appear in generated sourcemaps.
  13. ## 1.4.2
  14. - Updated UglifyJS to 2.5.0.
  15. - CI and dependencies chores.
  16. ## 1.4.1
  17. - Detect if options is a non-Object and log a warning.
  18. Older versions of Node.js did not allow Strings to be passed to `Object.keys` leading to errors and confusion to users following certain tutorials.
  19. ## 1.4.0
  20. - Deprecated the `preserveComments` option of "some".
  21. - Added the `preserveComments` option of "license" that uses [`uglify-save-license`](https://github.com/shinnn/uglify-save-license).
  22. ## 1.3.0
  23. - Updated UglifyJS to 2.4.24.
  24. - Streams3 support via through2 dependency update.
  25. ## 1.2.0
  26. - Update dependencies, including UglifyJS to 2.4.19.
  27. ## 1.1.0
  28. - Fix sources path in source maps (thanks @floridoo)
  29. - Update UglifyJS to 2.4.16 (thanks @tschaub)
  30. ## 1.0.0
  31. - Handle cases where UglifyJS uses e.msg instead of e.message for error codes. Fixes #51.
  32. - Supplement UglifyJS’s source map merging with vinyl-sourcemap-apply to correct issues where `sources` and `sourcesContent` were different. Fixes #43.
  33. - Refactor option parsing and defaults, and calls to uglify-js, to reduce complexity of the main function.
  34. - Added tests for the previously forgotten `preserveComments` option.
  35. - Updated UglifyJS to 2.4.15.
  36. - Changed dependencies to explicit ranges to avoid `node-semver` issues.
  37. ## 0.3.2
  38. - Removed the PluginError factory wrapper
  39. - Removed test that was failing due to gulp-util issue.
  40. - Tests should end the streams they are writing to.
  41. - Update dependencies. Fixes #44. Fixes #42.
  42. ## 0.3.1
  43. - Fixed homepage URL in npm metadata
  44. - Removes UglifyJS-inserted sourceMappingURL comment [Fixes #39]
  45. - Don’t pass input source map to UglifyJS if there are no mappings
  46. - Added installation instructions
  47. ## 0.3.0
  48. - Removed support for old style source maps
  49. - Added support for gulp-sourcemap
  50. - Updated tape development dependency
  51. - Dropped support for Node 0.9
  52. - UglifyJS errors are no longer swallowed
  53. ## 0.2.1
  54. - Correct source map output
  55. - Remove `gulp` dependency by using `vinyl` in testing
  56. - Passthrough null files correctly
  57. - Report error if attempting to use a stream-backed file
  58. ## 0.2.0
  59. - Dropped support for Node versions less than 0.9
  60. - Switched to using Streams2
  61. - Add support for generating source maps
  62. - Add option for preserving comments