Skip to content

Commit b76279c

Browse files
committed
update make commands to include modules in the binary
Signed-off-by: Utkarsh Srivastava <[email protected]>
1 parent e721683 commit b76279c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
make: linux darwin windows
22

33
darwin:
4-
nexe index.js -t darwin-x64 -o kubeopenapi-jsonschema-darwin
4+
nexe index.js -t darwin-x64 -o kubeopenapi-jsonschema-darwin -r "./node_modules/**/*"
55

66
linux:
7-
nexe index.js -t linux-x64 -o kubeopenapi-jsonschema
7+
nexe index.js -t linux-x64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
88

99
windows:
10-
nexe index.js -t windows-x64 -o kubeopenapi-jsonschema
10+
nexe index.js -t windows-x64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"

0 commit comments

Comments
 (0)