Skip to content

Commit bd14a46

Browse files
authored
Merge pull request #17 from pubref/fix_issue_16
Include 'script' file in ctx.action input list
2 parents 41fdaa5 + 0b19a30 commit bd14a46

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)