mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
6.0 KiB
6.0 KiB
Changelog
[1.0.0-beta.2]
- Fixes the
beforeDevCommandon vite recipe.
[1.0.0-beta.1]
- Work around bugs between esbuild and npm by installing directly at the end of the sequence. Also default to using the latest on all of the installs instead of npx's cache.
[1.0.0-beta.0]
- Explicitly install deps after a vite recipe.
- Shift everything out of the
binand into.tsso we can apply Typescript types. - We setup an e2e type test suite for CTA. It is mostly an internal change, but should help with stability moving forward.
- Add support for all vite templates
- Add a welcome prompt to let the user know about the process and links to more info including prerequisite setup steps. Also add links to each of the templates to give the user more context what they are getting into.
[1.0.0-beta-rc.4]
- Manually set
tauriscript instead of usingnpm set-scriptfor compatabilty with older npm versions
[1.0.0-beta-rc.3]
- Remove
lodashdependency and replace with es6 builtins - Remove
tauridependency from vanilla recipe - Fix adding
tauriscript to package.json
[1.0.0-beta-rc.2]
- CTA also needs the template directory published as it doesn't get bundled into the
distdirectory.
[1.0.0-beta-rc.1]
- CTA was missing the
filesproperty in the package.json which mean that thedistdirectory was not published and used.
[1.0.0-beta-rc.0]
- Add vanilla javascript option to
create-tauri-appthrough templating. - Use a test based on an npm env var to determine which package manager to use.
- 6e0598c feat: derive package manager from env var on 2021-04-12
- Add initial
vitesupport starting withvueandvue-ts - Revert
tauri createdeletion and shift remaining pieces that weren't deleted tocreate-tauri-app.