Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jasongwartz/bazel_rules_nodejs_contrib
Ecosia specific JS Bazel rules to be used with the NodeJS rules
https://github.com/jasongwartz/bazel_rules_nodejs_contrib
Last synced: 2 months ago
JSON representation
Ecosia specific JS Bazel rules to be used with the NodeJS rules
- Host: GitHub
- URL: https://github.com/jasongwartz/bazel_rules_nodejs_contrib
- Owner: jasongwartz
- License: apache-2.0
- Archived: true
- Created: 2018-06-19T11:32:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-04T22:31:26.000Z (almost 5 years ago)
- Last Synced: 2024-07-31T07:18:43.135Z (5 months ago)
- Language: Python
- Size: 798 KB
- Stars: 24
- Watchers: 5
- Forks: 6
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - bazel_rules_nodejs_contrib - Ecosia specific JS Bazel rules to be used with the NodeJS rules (Python)
README
# JS rules for Bazel
Ecosia specific JS Bazel rules to be used with the NodeJS rules## Setup
```py
# These rules depend on running Node.js
http_archive(
name = "build_bazel_rules_nodejs",
urls = ["https://github.com/bazelbuild/rules_nodejs/archive/0.30.1.tar.gz"],
strip_prefix = "rules_nodejs-0.30.1",
sha256 = "50fa0f31ca1deb1cffde4cfb546bc6d15d6cac39880f6ff3c883d66f98736f4b",
)http_archive(
name = "ecosia_bazel_rules_nodejs_contrib",
urls = ["https://github.com/ecosia/bazel_rules_nodejs_contrib/archive/6450754ab9c44e627c7e90a5838a59f4cc45e76e.tar.gz"],
strip_prefix = "bazel_rules_nodejs_contrib-6450754ab9c44e627c7e90a5838a59f4cc45e76e",
sha256 = "dda6a6af4361717a36d9e3bc1c0464ff55be1aacd2a2fc6c61e6524f95930268",
)load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")
# Point to the package.json file so Bazel can run the package manager for you.
node_repositories(package_json = ["//:package.json"])# This loads the dependencies for the rules in this repository
load("@ecosia_bazel_rules_nodejs_contrib//:defs.bzl", "node_contrib_repositories")node_contrib_repositories()
```## Rules
For usage of each rule have a look in the examples directory.
### json_to_js
Converts json files to treeshakable ES modules
`json_to_js(name, srcs)`
### toml_to_js
Converts toml files to treeshakable ES modules
`toml_to_js(name, srcs, strict)`
### js_import
Provides transitive dependcy support for custom files to be imported in js. Like svg or proto files that will get compiled to js by an upstream rule. This exists mostly for compatibility and migration reasons, as ideally each of these files would have ther own `x_to_js` or similar rules.
`js_import(name, srcs)`
### vue_component
Converts a vue component to an ES module with the css injected into the js.
`vue_component(name, src)`
### js_library
A generic js_library rule that provides transitive dependency support for `bazelbuild/rules_nodejs` as well as some basic interoperability with `ts_devserver`.
`js_library(name, srcs, deps, module_name, module_root)`
### babel_library
This rule provides compilation support with babel as well as transitive dependency support for `bazelbuild/rules_nodejs` and interoperability with `ts_devserver`.
The default label for the `babel` binary is `@npm//@bazel/babel/bin:babel` as it is eventually expected to be a hosted package. For now you can either create a `nodejs_binary` including the `babel.js` in your workspace or add a `file:` dependency into your `package.json` similar to the example provided here. If no custom `babelrc` is provided it defaults to `@babel/preset-env` with umd compilation the way `ts_devserver` expects.
`babel_library(name, srcs, deps, data, module_name, module_root, babel, babelrc)`
## Build file generation
Build file generation is provided as a plugin for [gazelle](https://github.com/bazelbuild/bazel-gazelle) and still WIP and to a certain degree coupled to our internal js setup. It should not be difficult to extend / make it more generic though. It makes use of the `js_library` and `jest_node_test` provided in these rules. It also supports `ts_library` as well as an option to swap out `js_library` generation with `babel_library`.
To setup the gazlle plugin follow the installation instructions provided by the repository and additionally add the following to your root level `BUILD.bazel`:
```py
load("@bazel_gazelle//:def.bzl", "DEFAULT_LANGUAGES", "gazelle", "gazelle_binary")# gazelle:exclude node_modules
gazelle(
name = "gazelle",
gazelle = ":gazelle_js",
# optionally to configure
extra_args = [
"-npm_workspace_name", # define a custom workspace name instead of @npm
"my-npm",
"-js_library", # will use babel_library instead of js_library
"babel_library",
"-js_import_extensions", # will generate js_import for .svg and .proto files
".svg,.proto",
"-alias_import_support", # support resolving alias import statements, like "~/"
"-generate_js_tests", # enables jest_node_test generation for .test.js files
]
)gazelle_binary(
name = "gazelle_js",
languages = DEFAULT_LANGUAGES + [
"@ecosia_bazel_rules_nodejs_contrib//gazelle:go_default_library",
],
visibility = [
"//visibility:public",
],
)
```## Contributions
The code in this repository is not actively supported / developed as these rules have currently only been used for experimentation and bazel is being evaluated for internal use. PRs and bug fixes would most likely be accepted though.