Skip to content

Commit

Permalink
fix(npm_install) exclude test directory (#653)
Browse files Browse the repository at this point in the history
PR closes #652
  • Loading branch information
Keen Yee Liau authored and gregmagolan committed Apr 4, 2019
1 parent 7ce70c5 commit 4929948
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion internal/npm_install/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ filegroup(

filegroup(
name = "package_contents",
srcs = glob(["*"]),
srcs = glob(
include = ["*"],
exclude = ["test"],
),
visibility = ["//:__pkg__"],
)

0 comments on commit 4929948

Please sign in to comment.