@tauri-apps/cli 1.0.0-rc.8 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,130 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.0.1]
4
+
5
+ - No longer adds the `pkg-config` dependency to `.deb` packages when the `systemTray` is used.
6
+ This only works with recent versions of `libappindicator-sys` (including https://github.com/tauri-apps/libappindicator-rs/pull/38),
7
+ so a `cargo update` may be necessary if you create `.deb` bundles and use the tray feature.
8
+ - [0e6edeb1](https://www.github.com/tauri-apps/tauri/commit/0e6edeb14f379af1e02a7cebb4e3a5c9e87ebf7f) fix(cli): Don't add `pkg-config` to `deb` ([#4508](https://www.github.com/tauri-apps/tauri/pull/4508)) on 2022-06-29
9
+ - AppImage bundling will now prefer bundling correctly named appincidator library (including `.1` version suffix). With a symlink for compatibility with the old naming.
10
+ - [bf45ca1d](https://www.github.com/tauri-apps/tauri/commit/bf45ca1df6691c05bdf72c5716cc01e89a7791d4) fix(cli,bundler): prefer AppImage libraries with ABI version ([#4505](https://www.github.com/tauri-apps/tauri/pull/4505)) on 2022-06-29
11
+ - Improve error message when `cargo` is not installed.
12
+ - [e0e5f772](https://www.github.com/tauri-apps/tauri/commit/e0e5f772430f6349ec99ba891e601331e376e3c7) feat(cli): improve `cargo not found` error message, closes [#4428](https://www.github.com/tauri-apps/tauri/pull/4428) ([#4430](https://www.github.com/tauri-apps/tauri/pull/4430)) on 2022-06-21
13
+ - The app template now only sets the default menu on macOS.
14
+ - [5105b428](https://www.github.com/tauri-apps/tauri/commit/5105b428c4726b2179cd4b3244350d1a1ee73734) feat(cli): change app template to only set default menu on macOS ([#4518](https://www.github.com/tauri-apps/tauri/pull/4518)) on 2022-06-29
15
+ - Warn if updater is enabled but not in the bundle target list.
16
+ - [31c15cd2](https://www.github.com/tauri-apps/tauri/commit/31c15cd2bd94dbe39fb94982a15cbe02ac5d8925) docs(config): enhance documentation for bundle targets, closes [#3251](https://www.github.com/tauri-apps/tauri/pull/3251) ([#4418](https://www.github.com/tauri-apps/tauri/pull/4418)) on 2022-06-21
17
+ - Check if target exists and is installed on dev and build commands.
18
+ - [13b8a240](https://www.github.com/tauri-apps/tauri/commit/13b8a2403d1353a8c3a643fbc6b6e862af68376e) feat(cli): validate target argument ([#4458](https://www.github.com/tauri-apps/tauri/pull/4458)) on 2022-06-24
19
+ - Fixes the covector configuration on the plugin templates.
20
+ - [b8a64d01](https://www.github.com/tauri-apps/tauri/commit/b8a64d01bab11f955b7bbdf323d0afa1a3db4b64) fix(cli): add prepublish scripts to the plugin templates on 2022-06-19
21
+ - Set the binary name to the product name in development.
22
+ - [b025b9f5](https://www.github.com/tauri-apps/tauri/commit/b025b9f581ac1a6ae0a26789c2be1e9928fb0282) refactor(cli): set binary name on dev ([#4447](https://www.github.com/tauri-apps/tauri/pull/4447)) on 2022-06-23
23
+ - Allow registering a `.gitignore` file to skip watching some project files and directories via the `TAURI_DEV_WATCHER_IGNORE_FILE` environment variable.
24
+ - [83186dd8](https://www.github.com/tauri-apps/tauri/commit/83186dd89768407984db35fb67c3cc51f50ea8f5) Read extra ignore file for dev watcher, closes [#4406](https://www.github.com/tauri-apps/tauri/pull/4406) ([#4409](https://www.github.com/tauri-apps/tauri/pull/4409)) on 2022-06-20
25
+ - Fix shebang for `kill-children.sh`.
26
+ - [35dd51db](https://www.github.com/tauri-apps/tauri/commit/35dd51db6826ec1eed7b90082b9eb6b2a699b627) fix(cli): add shebang for kill-children.sh, closes [#4262](https://www.github.com/tauri-apps/tauri/pull/4262) ([#4416](https://www.github.com/tauri-apps/tauri/pull/4416)) on 2022-06-22
27
+ - Update plugin templates to use newer `tauri-apps/create-pull-request` GitHub action.
28
+ - [07f90795](https://www.github.com/tauri-apps/tauri/commit/07f9079532a42f3517d96faeaf46cad6176b31ac) chore(cli): update plugin template tauri-apps/create-pull-request on 2022-06-19
29
+ - Use UNIX path separator on the init `$schema` field.
30
+ - [01053045](https://www.github.com/tauri-apps/tauri/commit/010530459ef62c48eed68ca965f2688accabcf69) chore(cli): use unix path separator on $schema ([#4384](https://www.github.com/tauri-apps/tauri/pull/4384)) on 2022-06-19
31
+ - The `info` command now can check the Cargo lockfile on workspaces.
32
+ - [12f65219](https://www.github.com/tauri-apps/tauri/commit/12f65219ea75a51ebd38659ddce1563e015a036c) fix(cli): read lockfile from workspace on the info command, closes [#4232](https://www.github.com/tauri-apps/tauri/pull/4232) ([#4423](https://www.github.com/tauri-apps/tauri/pull/4423)) on 2022-06-21
33
+ - Preserve the `Cargo.toml` formatting when the features array is not changed.
34
+ - [6650e5d6](https://www.github.com/tauri-apps/tauri/commit/6650e5d6720c215530ca1fdccd19bd2948dd6ca3) fix(cli): preserve Cargo manifest formatting when possible ([#4431](https://www.github.com/tauri-apps/tauri/pull/4431)) on 2022-06-21
35
+ - Change the updater signature metadata to include the file name instead of its full path.
36
+ - [094b3eb3](https://www.github.com/tauri-apps/tauri/commit/094b3eb352bcf5de28414015e7c44290d619ea8c) fix(cli): file name instead of path on updater sig comment, closes [#4467](https://www.github.com/tauri-apps/tauri/pull/4467) ([#4484](https://www.github.com/tauri-apps/tauri/pull/4484)) on 2022-06-27
37
+ - Validate bundle identifier as it must only contain alphanumeric characters, hyphens and periods.
38
+ - [0674a801](https://www.github.com/tauri-apps/tauri/commit/0674a80129d7c31bc93257849afc0a5069129fed) fix: assert config.bundle.identifier to be only alphanumeric, hyphens or dots. closes [#4359](https://www.github.com/tauri-apps/tauri/pull/4359) ([#4363](https://www.github.com/tauri-apps/tauri/pull/4363)) on 2022-06-17
39
+
40
+ ## \[1.0.0]
41
+
42
+ - Upgrade to `stable`!
43
+ - [f4bb30cc](https://www.github.com/tauri-apps/tauri/commit/f4bb30cc73d6ba9b9ef19ef004dc5e8e6bb901d3) feat(covector): prepare for v1 ([#4351](https://www.github.com/tauri-apps/tauri/pull/4351)) on 2022-06-15
44
+
45
+ ## \[1.0.0-rc.16]
46
+
47
+ - Use the default window menu in the app template.
48
+ - [4c4acc30](https://www.github.com/tauri-apps/tauri/commit/4c4acc3094218dd9cee0f1ad61810c979e0b41fa) feat: implement `Default` for `Menu`, closes [#2398](https://www.github.com/tauri-apps/tauri/pull/2398) ([#4291](https://www.github.com/tauri-apps/tauri/pull/4291)) on 2022-06-15
49
+
50
+ ## \[1.0.0-rc.15]
51
+
52
+ - Removed the tray icon from the Debian and AppImage bundles since they are embedded in the binary now.
53
+ - [4ce8e228](https://www.github.com/tauri-apps/tauri/commit/4ce8e228134cd3f22973b74ef26ca0d165fbbbd9) refactor(core): use `Icon` for tray icons ([#4342](https://www.github.com/tauri-apps/tauri/pull/4342)) on 2022-06-14
54
+
55
+ ## \[1.0.0-rc.14]
56
+
57
+ - Set the `TRAY_LIBRARY_PATH` environment variable to make the bundle copy the appindicator library to the AppImage.
58
+ - [34552444](https://www.github.com/tauri-apps/tauri/commit/3455244436578003a5fbb447b039e5c8971152ec) feat(cli): bundle appindicator library in the AppImage, closes [#3859](https://www.github.com/tauri-apps/tauri/pull/3859) ([#4267](https://www.github.com/tauri-apps/tauri/pull/4267)) on 2022-06-07
59
+ - Set the `APPIMAGE_BUNDLE_GSTREAMER` environment variable to make the bundler copy additional gstreamer files to the AppImage.
60
+ - [d335fae9](https://www.github.com/tauri-apps/tauri/commit/d335fae92cdcbb0ee18aad4e54558914afa3e778) feat(bundler): bundle additional gstreamer files, closes [#4092](https://www.github.com/tauri-apps/tauri/pull/4092) ([#4271](https://www.github.com/tauri-apps/tauri/pull/4271)) on 2022-06-10
61
+ - Configure the AppImage bundler to copy the `/usr/bin/xdg-open` binary if it exists and the shell `open` API is enabled.
62
+ - [2322ac11](https://www.github.com/tauri-apps/tauri/commit/2322ac11cf6290c6bf65413048a049c8072f863b) fix(bundler): bundle `/usr/bin/xdg-open` in appimage if open API enabled ([#4265](https://www.github.com/tauri-apps/tauri/pull/4265)) on 2022-06-04
63
+ - Fixes multiple occurrences handling of the `bundles` and `features` arguments.
64
+ - [f685df39](https://www.github.com/tauri-apps/tauri/commit/f685df399a5a05480b6e4f5d92da71f3b87895ef) fix(cli): parsing of arguments with multiple values, closes [#4231](https://www.github.com/tauri-apps/tauri/pull/4231) ([#4233](https://www.github.com/tauri-apps/tauri/pull/4233)) on 2022-05-29
65
+ - Log command output in real time instead of waiting for it to finish.
66
+ - [76d1eaae](https://www.github.com/tauri-apps/tauri/commit/76d1eaaebda5c8f6b0d41bf6587945e98cd441f3) feat(cli): debug command output in real time ([#4318](https://www.github.com/tauri-apps/tauri/pull/4318)) on 2022-06-12
67
+ - Configure the `STATIC_VCRUNTIME` environment variable so `tauri-build` statically links it on the build command.
68
+ - [d703d27a](https://www.github.com/tauri-apps/tauri/commit/d703d27a707edc028f13b35603205da1133fcc2b) fix(build): statically link VC runtime only on `tauri build` ([#4292](https://www.github.com/tauri-apps/tauri/pull/4292)) on 2022-06-07
69
+ - Use the `TAURI_TRAY` environment variable to determine which package should be added to the Debian `depends` section. Possible values are `ayatana` and `gtk`.
70
+ - [6216eb49](https://www.github.com/tauri-apps/tauri/commit/6216eb49e72863bfb6d4c9edb8827b21406ac393) refactor(core): drop `ayatana-tray` and `gtk-tray` Cargo features ([#4247](https://www.github.com/tauri-apps/tauri/pull/4247)) on 2022-06-02
71
+
72
+ ## \[1.0.0-rc.13]
73
+
74
+ - Check if `$CWD/src-tauri/tauri.conf.json` exists before walking through the file tree to find the tauri dir in case the whole project is gitignored.
75
+ - [bd8f3e29](https://www.github.com/tauri-apps/tauri/commit/bd8f3e298a0cb71809f2e93cc3ebc8e6e5b6a626) fix(cli): manual config lookup to handle gitignored folders, fixes [#3527](https://www.github.com/tauri-apps/tauri/pull/3527) ([#4224](https://www.github.com/tauri-apps/tauri/pull/4224)) on 2022-05-26
76
+ - Statically link the Visual C++ runtime instead of using a merge module on the installer.
77
+ - [bb061509](https://www.github.com/tauri-apps/tauri/commit/bb061509fb674bef86ecbc1de3aa8f3e367a9907) refactor(core): statically link vcruntime, closes [#4122](https://www.github.com/tauri-apps/tauri/pull/4122) ([#4227](https://www.github.com/tauri-apps/tauri/pull/4227)) on 2022-05-27
78
+
79
+ ## \[1.0.0-rc.12]
80
+
81
+ - Properly fetch the NPM dependency information when using Yarn 2+.
82
+ - [cdfa6255](https://www.github.com/tauri-apps/tauri/commit/cdfa62551115586725bd3e4c04f12c5256f20790) fix(cli): properly read info when using yarn 2+, closes [#4106](https://www.github.com/tauri-apps/tauri/pull/4106) ([#4193](https://www.github.com/tauri-apps/tauri/pull/4193)) on 2022-05-23
83
+
84
+ ## \[1.0.0-rc.11]
85
+
86
+ - Allow configuring the display options for the MSI execution allowing quieter updates.
87
+ - [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
88
+
89
+ ## \[1.0.0-rc.10]
90
+
91
+ - Resolve binary file extension from target triple instead of compile-time checks to allow cross compilation.
92
+ - [4562e671](https://www.github.com/tauri-apps/tauri/commit/4562e671e4795e9386429348bf738f7078706945) fix(build): append .exe binary based on target triple instead of running OS, closes [#3870](https://www.github.com/tauri-apps/tauri/pull/3870) ([#4032](https://www.github.com/tauri-apps/tauri/pull/4032)) on 2022-05-03
93
+ - Fixes text overflow on `tauri dev` on Windows.
94
+ - [094534d1](https://www.github.com/tauri-apps/tauri/commit/094534d138a9286e4746b61adff2da616e3b6a61) fix(cli): dev command stderr text overflow on Windows, closes [#3995](https://www.github.com/tauri-apps/tauri/pull/3995) ([#4000](https://www.github.com/tauri-apps/tauri/pull/4000)) on 2022-04-29
95
+ - Improve CLI's logging output, making use of the standard rust `log` system.
96
+ - [35f21471](https://www.github.com/tauri-apps/tauri/commit/35f2147161e6697cbd2824681eeaf870b5a991c2) feat(cli): Improve CLI logging ([#4060](https://www.github.com/tauri-apps/tauri/pull/4060)) on 2022-05-07
97
+ - Don't override the default keychain on macOS while code signing.
98
+ - [a4fcaf1d](https://www.github.com/tauri-apps/tauri/commit/a4fcaf1d04aafc3b4d42186f0fb386797d959a9d) fix: don't override default keychain, closes [#4008](https://www.github.com/tauri-apps/tauri/pull/4008) ([#4053](https://www.github.com/tauri-apps/tauri/pull/4053)) on 2022-05-05
99
+ - - Remove startup delay in `tauri dev` caused by checking for a newer cli version. The check is now done upon process exit.
100
+ - Add `TAURI_SKIP_UPDATE_CHECK` env variable to skip checking for a newer CLI version.
101
+ - [bbabc8cd](https://www.github.com/tauri-apps/tauri/commit/bbabc8cd1ea2c1f6806610fd2d533c99305d320c) fix(cli.rs): remove startup delay in `tauri dev` ([#3999](https://www.github.com/tauri-apps/tauri/pull/3999)) on 2022-04-29
102
+ - Fix `tauri info` panic when a package isn't installed.
103
+ - [4f0f3187](https://www.github.com/tauri-apps/tauri/commit/4f0f3187c9e69262ef28350331b368c831ab930a) fix(cli.rs): fix `tauri info` panic when a package isn't installed, closes [#3985](https://www.github.com/tauri-apps/tauri/pull/3985) ([#3996](https://www.github.com/tauri-apps/tauri/pull/3996)) on 2022-04-29
104
+ - Added `$schema` support to `tauri.conf.json`.
105
+ - [715cbde3](https://www.github.com/tauri-apps/tauri/commit/715cbde3842a916c4ebeab2cab348e1774b5c192) feat(config): add `$schema` to `tauri.conf.json`, closes [#3464](https://www.github.com/tauri-apps/tauri/pull/3464) ([#4031](https://www.github.com/tauri-apps/tauri/pull/4031)) on 2022-05-03
106
+ - **Breaking change:** The `dev` command now reads the custom config file from CWD instead of the Tauri folder.
107
+ - [a1929c6d](https://www.github.com/tauri-apps/tauri/commit/a1929c6dacccd00af4cdbcc4d29cfb98d8428f55) fix(cli): always read custom config file from CWD, closes [#4067](https://www.github.com/tauri-apps/tauri/pull/4067) ([#4074](https://www.github.com/tauri-apps/tauri/pull/4074)) on 2022-05-07
108
+ - Fixes a Powershell crash when sending SIGINT to the dev command.
109
+ - [32048486](https://www.github.com/tauri-apps/tauri/commit/320484866b83ecabb01eb58d158e0fedd9dd08be) fix(cli): powershell crashing on SIGINT, closes [#3997](https://www.github.com/tauri-apps/tauri/pull/3997) ([#4007](https://www.github.com/tauri-apps/tauri/pull/4007)) on 2022-04-29
110
+ - Prevent building when the bundle identifier is the default `com.tauri.dev`.
111
+ - [95726ebb](https://www.github.com/tauri-apps/tauri/commit/95726ebb6180d371be44bff9f16ca1eee049006a) feat(cli): prevent default bundle identifier from building, closes [#4041](https://www.github.com/tauri-apps/tauri/pull/4041) ([#4042](https://www.github.com/tauri-apps/tauri/pull/4042)) on 2022-05-04
112
+
113
+ ## \[1.0.0-rc.9]
114
+
115
+ - Exit CLI when Cargo returns a non-compilation error in `tauri dev`.
116
+ - [b5622882](https://www.github.com/tauri-apps/tauri/commit/b5622882cf3748e1e5a90915f415c0cd922aaaf8) fix(cli): exit on non-compilation Cargo errors, closes [#3930](https://www.github.com/tauri-apps/tauri/pull/3930) ([#3942](https://www.github.com/tauri-apps/tauri/pull/3942)) on 2022-04-22
117
+ - Notify CLI update when running `tauri dev`.
118
+ - [a649aad7](https://www.github.com/tauri-apps/tauri/commit/a649aad7ad26d4578699370d6e63d80edeca1f97) feat(cli): check and notify about updates on `tauri dev`, closes [#3789](https://www.github.com/tauri-apps/tauri/pull/3789) ([#3960](https://www.github.com/tauri-apps/tauri/pull/3960)) on 2022-04-25
119
+ - Kill the `beforeDevCommand` and app processes if the dev command returns an error.
120
+ - [485c9743](https://www.github.com/tauri-apps/tauri/commit/485c97438ac956d86bcf3794ceaa626bef968a4e) fix(cli): kill beforeDevCommand if dev code returns an error ([#3907](https://www.github.com/tauri-apps/tauri/pull/3907)) on 2022-04-19
121
+ - Fix `info` command showing outdated text for latest versions.
122
+ - [73a4b74a](https://www.github.com/tauri-apps/tauri/commit/73a4b74aea8544e6fda51c1f6697630b0768072c) fix(cli.rs/info): don't show outdated text for latest versions ([#3829](https://www.github.com/tauri-apps/tauri/pull/3829)) on 2022-04-02
123
+ - **Breaking change:** Enable default Cargo features except `tauri/custom-protocol` on the dev command.
124
+ - [f2a30d8b](https://www.github.com/tauri-apps/tauri/commit/f2a30d8bc54fc3ba49e16f69a413eca5f61a9b1f) refactor(core): use ayatana appindicator by default, keep option to use gtk ([#3916](https://www.github.com/tauri-apps/tauri/pull/3916)) on 2022-04-19
125
+ - Kill the `beforeDevCommand` process recursively on Unix.
126
+ - [e251e1b0](https://www.github.com/tauri-apps/tauri/commit/e251e1b0991d26ab10aea33cfb228f3e7f0f85b5) fix(cli): kill before dev command recursively on Unix, closes [#2794](https://www.github.com/tauri-apps/tauri/pull/2794) ([#3848](https://www.github.com/tauri-apps/tauri/pull/3848)) on 2022-04-03
127
+
3
128
  ## \[1.0.0-rc.8]
4
129
 
5
130
  - Allows the `tauri.conf.json` file to be git ignored on the path lookup function.
package/Cargo.toml CHANGED
@@ -8,9 +8,9 @@ crate-type = ["cdylib"]
8
8
 
9
9
  [dependencies]
10
10
  # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
11
- napi = { version = "2.2", default-features = false, features = ["napi4"] }
12
- napi-derive = "2.2"
11
+ napi = { version = "2.5", default-features = false, features = ["napi4"] }
12
+ napi-derive = "2.5"
13
13
  tauri-cli = { path = ".." }
14
14
 
15
15
  [build-dependencies]
16
- napi-build = "1.2"
16
+ napi-build = "2.0"
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  ![](https://img.shields.io/github/workflow/status/tauri-apps/tauri/test%20library?label=test%20library
9
9
  )
10
- [![devto](https://img.shields.io/badge/documentation-site-purple.svg)](https://tauri.studio)
10
+ [![devto](https://img.shields.io/badge/documentation-site-purple.svg)](https://tauri.app)
11
11
 
12
12
  [![https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg](https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg)](https://good-labs.github.io/greater-good-affirmation)
13
13
  [![support](https://img.shields.io/badge/sponsor-Opencollective-blue.svg)](https://opencollective.com/tauri)
package/index.d.ts CHANGED
@@ -3,4 +3,4 @@
3
3
 
4
4
  /* auto-generated by NAPI-RS */
5
5
 
6
- export function run(args: Array<string>, binName: string | undefined | null, callback: (...args: any[]) => any): void
6
+ export function run(args: Array<string>, binName?: string | undefined | null): void
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.0.0-rc.8",
3
+ "version": "1.0.1",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -11,7 +11,7 @@
11
11
  "url": "git+https://github.com/tauri-apps/tauri.git"
12
12
  },
13
13
  "contributors": [
14
- "Tauri Team <team@tauri-apps.org> (https://tauri.studio)"
14
+ "Tauri Team <team@tauri-apps.org> (https://tauri.app)"
15
15
  ],
16
16
  "license": "Apache-2.0 OR MIT",
17
17
  "bugs": {
@@ -37,12 +37,13 @@
37
37
  }
38
38
  },
39
39
  "devDependencies": {
40
- "@napi-rs/cli": "2.5.0",
40
+ "@napi-rs/cli": "2.10.0",
41
+ "cross-env": "7.0.3",
41
42
  "cross-spawn": "7.0.3",
42
- "fs-extra": "10.0.1",
43
- "jest": "27.5.1",
43
+ "fs-extra": "10.1.0",
44
+ "jest": "28.1.2",
44
45
  "jest-transform-toml": "1.0.0",
45
- "prettier": "2.6.0"
46
+ "prettier": "2.7.1"
46
47
  },
47
48
  "engines": {
48
49
  "node": ">= 10"
@@ -52,9 +53,10 @@
52
53
  },
53
54
  "scripts": {
54
55
  "artifacts": "napi artifacts",
55
- "build": "napi build --platform --release",
56
- "build:debug": "napi build --platform",
56
+ "build:release": "cross-env TARGET=node napi build --platform --release",
57
+ "build": "cross-env TARGET=node napi build --platform",
57
58
  "prepublishOnly": "napi prepublish -t npm",
59
+ "prepack": "cp ../schema.json .",
58
60
  "test": "jest --runInBand --forceExit --no-cache",
59
61
  "version": "napi version",
60
62
  "tauri": "node ./tauri.js",
@@ -62,14 +64,14 @@
62
64
  "format:check": "prettier --check ./package.json ./tauri.js"
63
65
  },
64
66
  "optionalDependencies": {
65
- "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.8",
66
- "@tauri-apps/cli-darwin-x64": "1.0.0-rc.8",
67
- "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.8",
68
- "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.8",
69
- "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.8",
70
- "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.8",
71
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.8",
72
- "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.8",
73
- "@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.8"
67
+ "@tauri-apps/cli-win32-x64-msvc": "1.0.1",
68
+ "@tauri-apps/cli-darwin-x64": "1.0.1",
69
+ "@tauri-apps/cli-linux-x64-gnu": "1.0.1",
70
+ "@tauri-apps/cli-darwin-arm64": "1.0.1",
71
+ "@tauri-apps/cli-linux-arm64-gnu": "1.0.1",
72
+ "@tauri-apps/cli-linux-arm64-musl": "1.0.1",
73
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.1",
74
+ "@tauri-apps/cli-linux-x64-musl": "1.0.1",
75
+ "@tauri-apps/cli-win32-ia32-msvc": "1.0.1"
74
76
  }
75
77
  }