tauri/cli/tauri.js/CHANGELOG.md
github-actions[bot] fa720d5016
Apply Version Updates From Current Changes (#748)
Co-authored-by: lucasfernog <lucas@tauri.studio>
2020-07-06 10:37:03 -03:00

647 B

Changelog

[0.8.1]

  • Transpile the TS API to ES5. Expose CJS as .js and ESM as .mjs.
  • Fixes the assets embedding into the binary.

[0.8.0]

  • Create UMD, ESM and CJS artifacts for the JavaScript API entry point from TS source using rollup.
  • Renaming window.tauri to window.__TAURI__, closing #435. The Tauri object now follows the TypeScript API structure (e.g. window.tauri.readTextFile is now window.__TAURI__.fs.readTextFile). If you want to keep the window.tauri object for a while, you can add a mapping object to your code.