You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`help`](#help)| Print this message or the help of the given subcommand(s) |
44
46
45
47
## `build`
@@ -75,8 +77,10 @@ Options:
75
77
Space or comma separated list of features to activate
76
78
-b, --bundles [<BUNDLES>...]
77
79
Space or comma separated list of bundles to package.
78
-
Each bundle must be one of `deb`, `appimage`, `msi`, `app` or `dmg` on MacOS and `updater` on all platforms. If `none` is specified, the bundler will be skipped.
80
+
Each bundle must be one of `deb`, `appimage`, `msi`, `app` or `dmg` on MacOS and `updater` on all platforms.
79
81
Note that the `updater` bundle is not automatically added so you must specify it if the updater is enabled.
82
+
--no-bundle
83
+
Bundler will be skipped
80
84
-c, --config <CONFIG>
81
85
JSON string or path to JSON file to merge with tauri.conf.json
82
86
--ci
@@ -499,6 +503,135 @@ Options:
499
503
-V, --version Print version
500
504
```
501
505
506
+
## `permission`
507
+
508
+
<CommandTabs
509
+
npm="npm tauri permission"
510
+
yarn="yarn tauri permission"
511
+
pnpm="pnpm tauri permission"
512
+
cargo="cargo tauri permission"
513
+
/>
514
+
515
+
```
516
+
Permission commands
517
+
518
+
Usage: cargo tauri permission <COMMAND>
519
+
520
+
Commands:
521
+
new Create a new permission file
522
+
add Add a permission to capabilities
523
+
rm Remove a permission file, and its reference from any capability
0 commit comments