mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 19:44:39 +03:00
5353379d15
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
6.0 KiB
6.0 KiB
Changelog
[1.0.0-beta.2]
- Fixes the
beforeDevCommand
on 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
bin
and into.ts
so 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
tauri
script instead of usingnpm set-script
for compatabilty with older npm versions
[1.0.0-beta-rc.3]
- Remove
lodash
dependency and replace with es6 builtins - Remove
tauri
dependency from vanilla recipe - Fix adding
tauri
script to package.json
[1.0.0-beta-rc.2]
- CTA also needs the template directory published as it doesn't get bundled into the
dist
directory.
[1.0.0-beta-rc.1]
- CTA was missing the
files
property in the package.json which mean that thedist
directory was not published and used.
[1.0.0-beta-rc.0]
- Add vanilla javascript option to
create-tauri-app
through 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
vite
support starting withvue
andvue-ts
- Revert
tauri create
deletion and shift remaining pieces that weren't deleted tocreate-tauri-app
.