Skip to content

Commit 0b19a30

Browse files
committed
Include 'script' file in ctx.action input list
Fixes #16
1 parent 494eafc commit 0b19a30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node/internal/node_library.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def node_library_impl(ctx):
109109

110110
ctx.action(
111111
mnemonic = "NpmInstallLocal",
112-
inputs = [node, npm, package_json_file] + srcs,
112+
inputs = [node, npm, package_json_file, script] + srcs,
113113
outputs = [npm_package_json_file],
114114
command = " && ".join(cmds),
115115
)

0 commit comments

Comments
 (0)