Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 590 Bytes

File metadata and controls

13 lines (10 loc) · 590 Bytes

Differences with Rules_nodejs

rules_nodejs are commonly used Bazel rules for Javascript. There are a number of non-trivial difference between that project and this one.

  • The npm dependency graph is still resolved by an external package manager, but downloaded and managed entirely by Bazel. This is an idiomatic Bazel approach, e.g. rules_jvm_external.
  • There is no special treatment of node module dependencies. Rather, everything uses the same rules (e.g. js_library, ts_import).
  • Clear factorization between components, e.g. JavaScript and TypeScript.