-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
46 lines (42 loc) · 725 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
load("@npm//next:index.bzl", "next")
load("@npm//@tauri-apps/cli:index.bzl", "tauri")
next(
name = "next-build",
data = glob([
"pages/**",
"public/**",
"styles/**",
]) + [
"tsconfig.json",
],
templated_args = ["build"],
)
next(
name = "next-dev",
data = glob([
"pages/**",
"public/**",
"styles/**",
]) + [
"tsconfig.json",
],
templated_args = ["dev"],
)
tauri(
name = "dev",
data = glob(["**"]) + [
"@npm//next",
],
templated_args = [
"dev",
],
)
tauri(
name = "bundle",
data = glob(["**"]) + [
"@npm//next",
],
templated_args = [
"build",
],
)