Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@setoelkahfi
/
tauri-on-bazel
tauri-on-bazel
/
frontend
/
desktop
/
BUILD
Code
Commits
Issues
Pulls
Sessions
CI/CD
feature/tauri-js-rs
feature/tauri-js-rs
main
text
21 lines
314 Bytes
Copy permalink
Copy
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
)