rules_node icon indicating copy to clipboard operation
rules_node copied to clipboard

Bazel build rules for node_js.

Results 11 rules_node issues
Sort by recently updated
recently updated
newest added

I have a repository structure like this: ``` api-protos/ protos/ BUILD pubsub/ BUILD v1alpha2/ pubsub.proto BUILD WORKSPACE ``` In my `WORKSPACE` file I have this: ``` load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") git_repository( name...

Hey! I'm pretty new to the bazel ecosystem, coming from a node background. Is this project still supported? If so, are there assumptions I'm missing? Does this repository depend on...

npm has the semantics that all programs see the entire node_modules tree. This allows libraries to have the dubious behavior "I don't declare any kind of dependency on foolib in...

Currently building binaries involves full copies of all the node modules. Would it be possible to provide a flag to use symlinks instead of full copies? In some docker containers,...

Hi all As I spend more time digging into JS/bazel rule sets, rules_node seems to be garnering more and more of my attention. Given that bazel is still a nascent...

WORKSPACE: ```python RULES_NODE_COMMIT = "56eadbd6e7545411e740d97fe1741c56dab42285" http_archive( name = "org_pubref_rules_node", sha256 = "9ed54e5fda5154aeff7b5ed51b85b83cbb630f70178ca1a1798af671c6cf945c", strip_prefix = "rules_node-%s" % RULES_NODE_COMMIT, url = "https://github.com/pubref/rules_node/archive/%s.zip" % RULES_NODE_COMMIT, ) load("@org_pubref_rules_node//node:rules.bzl", "node_repositories", "yarn_modules") node_repositories() yarn_modules( name =...

At the moment, linux seems to be hard-coded. Linux executables don't run on FreeBSD by default.

help wanted

Hey there, After upgrading to newer versions of bazel I started using this rules (previously I was using an in-house version that had similiar concepts to this library before the...

### The Problem `script_args` attribute of the `node_binary` rule is not written to the generated script. ### Setup WORKSPACE: ``` RULES_NODE_COMMIT = 'dc9f8ba73f007a5eb3e57668e77082188c1ce219' RULES_NODE_SHA256 = 'b0c627d7c412f8addff63b887ccc1b171033a215a47eb3186a8bca5889e7de78' http_archive( name = "org_pubref_rules_node",...

The library: [protobuf.js](https://github.com/dcodeIO/protobuf.js) To reproduce (Using the latest commit to this repo): WORKSPACE ``` RULES_NODE_COMMIT = 'a447bee6fec5a6b64b6b2dd5dfe0f0597c648d1c' RULES_NODE_SHA256 = '551f19fb02f97ccb68c78ec20e4190378e46129fc9594ed01be0baa0c224ec14' http_archive( name = "org_pubref_rules_node", url = "https://github.com/pubref/rules_node/archive/%s.zip" % RULES_NODE_COMMIT, strip_prefix...

bug