Last active
January 22, 2022 08:30
-
-
Save mr-pascal/3d01a95afd897953da966d66776d4db1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary") | |
| nodejs_binary( | |
| name = "app", | |
| entry_point = ":index.js", | |
| data = [ | |
| # Define needed NPM package dependency | |
| "@npm//express" | |
| ] | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment