We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92ac387 commit 58de7f1Copy full SHA for 58de7f1
client/BUILD
@@ -12,11 +12,16 @@ filegroup(
12
srcs = glob([
13
"public/*",
14
"src/assets/*",
15
- "src/components/*",
16
- "src/router/*",
17
- "src/store/*",
18
- "src/views/*",
+ "src/components/*.vue",
+ "src/router/*.ts",
+ "src/store/*.ts",
+ "src/views/*.vue",
19
"src/*",
20
+ "vue.config.js",
21
+ "tsconfig.json",
22
+ "babel.config.js",
23
+ ".browserlistrc",
24
+ ".eslintrc.js",
25
]),
26
)
27
@@ -26,17 +31,9 @@ vue_cli_service(
31
name = "ogpapp_client_build",
32
args = [
28
33
"build",
29
- "--modern",
30
34
],
- data = glob([
- "public/*",
- "src/assets/*",
35
36
37
38
- "src/*",
39
- ]) + [
+ data = [
+ ":ogpapp_client_src",
40
"@npm//:node_modules",
41
42
output_dir = True,
0 commit comments