Skip to content

14.0.0-alpha.14

Pre-release
Pre-release

Choose a tag to compare

@JamieMason JamieMason released this 15 Jun 16:30
· 199 commits to main since this release

14.0.0-alpha.14 (2025-06-15)

DEPRECATED ⚠️ - bug when reading JS/TS rcfiles fixed in 14.0.0-alpha.16

⚠️ If any of these alpha releases are going to have problems, it'll be this one. It changes how syncpack discovers its config file from using cosmiconfig to a custom implementation in Rust. If you have a JavaScript or TypeScript config file, you will need to install tsx. If your config file is JSON, you do not need tsx.

Local tests show that a JSON config file takes ~1ms to load while a JS one takes ~1s, due to the overhead of calling out to Node.js. There are good reasons to have a JS config file, but if your config is not at all dynamic then it might be better to switch to JSON (which still has autocomplete [docs]).

This version is also the first time syncpack has been published to crates.io if you want to give that a try, again this should be a little quicker as you're not having to go through npm and node.js to get to the binary.

Please open an issue if you run into problems.

Features

  • core: complete removal of banned custom types (3641fa4)

Bug Fixes

  • cargo: update dependencies (201806f)
  • cargo: update icu to v2 (8f9e82b)
  • npm: update dependencies (9192ed6)

Performance Improvements

  • config: migrate cosmiconfig to rust and tsx (c529488), closes #282