Skip to content

Latest commit

 

History

History
78 lines (45 loc) · 4.7 KB

CHANGELOG.md

File metadata and controls

78 lines (45 loc) · 4.7 KB

Changelog

All notable changes to this project will be documented in this file.

2.1.4 - (2024-12-01)

📝 Documentation

  • Default value for cjsExtension is "cjs" (1594fc5) (#153)

2.1.3 - (2024-09-19)

🐛 Bug Fixes

  • Do not append extensions to non-js asset imports (2cb2cb2) (#134)

2.1.2 - (2024-06-09)

🐛 Bug Fixes

  • Check path starts with deps instead of equality for subpath import support (c4961f3) (#112)

2.1.1 - (2024-05-21)

🐛 Bug Fixes

  • Explicitly set to CJS mode when tsup sets the format to CJS (950d459)
  • Scan dependencies and do not append extensions for those (d6bcf76)

📝 Documentation

  • readme: Update table of contents (ebd9570)

2.1.0 - (2024-05-12)

🚀 Features

  • Handle Directory Imports, Node Builtins (#104) (103d1b6)

2.0.0 - (2023-12-03)

🏠 Refactor

  • Make package itself a module and correct paths (a146182)

🐛 Bug Fixes

  • Filter on whether esbuild is processing import-statement kinds (f2fe6d1)
  • Add jsx,cjsx,mjsx,tsx,ctsx,mtsx to known extensions that should not be replaced (d2dc93f)
  • Set correct export mapping in package.json (6195a4c)
  • Properly default cjs to .cjs as extension (1aa389a)
    • 💥 BREAKING CHANGE: Though previously already intended for cjs to get .cjs as file extension, that was never actually properly applied. Because the CommonJS extension will from this version forward actually properly be .cjs I am releasing this a breaking change in case anyone expected it to be .js. If you want to upgrade and retain .js pass { cjsExtension: 'js' } as options to this plugin.

🧪 Testing

1.0.0 - (2022-10-16)

📝 Documentation

  • Add @favna as a contributor (ba2489d)
  • readme: Fix toc links (a7e157a)

🚀 Features

🧪 Testing