feature/tauri-js-rs
text 21 lines 314 Bytes
Raw
1 load("@npm//@tauri-apps/cli:index.bzl", "tauri")
2
3 tauri(
4 name = "dev",
5 data = glob(["**"]) + [
6 "@npm//next",
7 ],
8 templated_args = [
9 "dev",
10 ],
11 )
12
13 tauri(
14 name = "bundle",
15 data = glob(["**"]) + [
16 "@npm//next",
17 ],
18 templated_args = [
19 "build",
20 ],
21 )