-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3490636
commit 26e110f
Showing
15 changed files
with
859 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# NB: semantics here are not the same as .gitignore | ||
# see https://github.com/bazelbuild/bazel/issues/8106 | ||
# For example, every nested node_modules directory needs to be listed here. | ||
node_modules | ||
dist | ||
bazel-out |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# Common Bazel settings for JavaScript/NodeJS workspaces | ||
# This rc file is automatically discovered when Bazel is run in this workspace, | ||
# see https://docs.bazel.build/versions/master/guide.html#bazelrc | ||
# | ||
# The full list of Bazel options: https://docs.bazel.build/versions/master/command-line-reference.html | ||
|
||
# Cache action outputs on disk so they persist across output_base and bazel shutdown (eg. changing branches) | ||
build --disk_cache=~/.cache/bazel-disk-cache | ||
|
||
# Bazel picks up host-OS-specific config lines from bazelrc files | ||
build --enable_platform_specific_config | ||
|
||
# Bazel will create symlinks from the workspace directory to output artifacts. | ||
# Build results will be placed in a directory called "dist/bin" | ||
# Other directories will be created like "dist/testlogs" | ||
# Be aware that this will still create a bazel-out symlink in | ||
# your project directory, which you must exclude from version control and your | ||
# editor's search path. | ||
build --symlink_prefix=dist/ | ||
# To disable the symlinks altogether (including bazel-out) you can use | ||
# build --symlink_prefix=/ | ||
# however this makes it harder to find outputs. | ||
|
||
# Specifies desired output mode for running tests. | ||
# Valid values are | ||
# 'summary' to output only test status summary | ||
# 'errors' to also print test logs for failed tests | ||
# 'all' to print logs for all tests | ||
# 'streamed' to output logs for all tests in real time | ||
# (this will force tests to be executed locally one at a time regardless of --test_strategy value). | ||
test --test_output=errors | ||
|
||
# Support for debugging NodeJS tests | ||
# Add the Bazel option `--config=debug` to enable this | ||
# --test_output=streamed | ||
# Stream stdout/stderr output from each test in real-time. | ||
# See https://docs.bazel.build/versions/master/user-manual.html#flag--test_output for more details. | ||
# --test_strategy=exclusive | ||
# Run one test at a time. | ||
# --test_timeout=9999 | ||
# Prevent long running tests from timing out | ||
# See https://docs.bazel.build/versions/master/user-manual.html#flag--test_timeout for more details. | ||
# --nocache_test_results | ||
# Always run tests | ||
# --node_options=--inspect-brk | ||
# Pass the --inspect-brk option to all tests which enables the node inspector agent. | ||
# See https://nodejs.org/de/docs/guides/debugging-getting-started/#command-line-options for more details. | ||
# --define=VERBOSE_LOGS=1 | ||
# Rules will output verbose logs if the VERBOSE_LOGS environment variable is set. `VERBOSE_LOGS` will be passed to | ||
# `nodejs_binary` and `nodejs_test` via the default value of the `default_env_vars` attribute of those rules. | ||
# --compilation_mode=dbg | ||
# Rules may change their build outputs if the compilation mode is set to dbg. For example, | ||
# mininfiers such as terser may make their output more human readable when this is set. Rules will pass `COMPILATION_MODE` | ||
# to `nodejs_binary` executables via the actions.run env attribute. | ||
# See https://docs.bazel.build/versions/master/user-manual.html#flag--compilation_mode for more details. | ||
test:debug --test_output=streamed --test_strategy=exclusive --test_timeout=9999 --nocache_test_results --define=VERBOSE_LOGS=1 | ||
# Use bazel run with `--config=debug` to turn on the NodeJS inspector agent. | ||
# The node process will break before user code starts and wait for the debugger to connect. | ||
run:debug --define=VERBOSE_LOGS=1 -- --node_options=--inspect-brk | ||
# The following option will change the build output of certain rules such as terser and may not be desirable in all cases | ||
build:debug --compilation_mode=dbg | ||
|
||
# Turn off legacy external runfiles | ||
# This prevents accidentally depending on this feature, which Bazel will remove. | ||
build --nolegacy_external_runfiles | ||
|
||
# Workaround for: https://github.com/bazelbuild/bazel/issues/4327. | ||
# The Chromium browser archive for macOS and Windows contain files with spaces that | ||
# will break runfile tree creation for browser tests relying on `rules_webtesting`. | ||
build:macos --experimental_inprocess_symlink_creation | ||
build:windows --experimental_inprocess_symlink_creation | ||
|
||
# Turn on --incompatible_strict_action_env which was on by default | ||
# in Bazel 0.21.0 but turned off again in 0.22.0. Follow | ||
# https://github.com/bazelbuild/bazel/issues/7026 for more details. | ||
# This flag is needed to so that the bazel cache is not invalidated | ||
# when running bazel via `yarn bazel`. | ||
# See https://github.com/angular/angular/issues/27514. | ||
build --incompatible_strict_action_env | ||
run --incompatible_strict_action_env | ||
|
||
# When running `bazel coverage` --instrument_test_targets needs to be set in order to | ||
# collect coverage information from test targets | ||
coverage --instrument_test_targets | ||
|
||
# Load any settings specific to the current user. | ||
# .bazelrc.user should appear in .gitignore so that settings are not shared with team members | ||
# This needs to be last statement in this | ||
# config, as the user configuration should be able to overwrite flags from this file. | ||
# See https://docs.bazel.build/versions/master/best-practices.html#bazelrc | ||
# (Note that we use .bazelrc.user so the file appears next to .bazelrc in directory listing, | ||
# rather than user.bazelrc as suggested in the Bazel docs) | ||
try-import %workspace%/.bazelrc.user | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
5.0.0 | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.bazelrc.user | ||
dist | ||
bazel-out | ||
node_modules |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Add rules here to build your software | ||
# See https://docs.bazel.build/versions/main/build-ref.html#BUILD_files | ||
|
||
exports_files(["tsconfig.json"]) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Bazel workspace created by @bazel/create 5.3.0 | ||
|
||
# Declares that this directory is the root of a Bazel workspace. | ||
# See https://docs.bazel.build/versions/main/build-ref.html#workspace | ||
workspace( | ||
# How this workspace would be referenced with absolute labels from another workspace | ||
name = "example", | ||
) | ||
|
||
load("//tools:bazel_deps.bzl", "fetch_dependencies") | ||
|
||
fetch_dependencies() | ||
|
||
load("@build_bazel_rules_nodejs//:repositories.bzl", "build_bazel_rules_nodejs_dependencies") | ||
|
||
build_bazel_rules_nodejs_dependencies() | ||
|
||
# The npm_install rule runs yarn anytime the package.json or package-lock.json file changes. | ||
# It also extracts any Bazel rules distributed in an npm package. | ||
load("@build_bazel_rules_nodejs//:index.bzl", "npm_install") | ||
|
||
npm_install( | ||
# Name this npm so that Bazel Label references look like @npm//package | ||
name = "npm", | ||
package_json = "//:package.json", | ||
package_lock_json = "//:package-lock.json", | ||
) | ||
|
||
load("@build_bazel_rules_nodejs//toolchains/esbuild:esbuild_repositories.bzl", "esbuild_repositories") | ||
|
||
esbuild_repositories(npm_repository = "npm") | ||
|
||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") | ||
|
||
http_archive( | ||
name = "rules_prisma", | ||
# sha256 = '8feef60d3ac0faf369868bef3794677a7fc2f09fda00a6a70bf073e0400b8307', | ||
strip_prefix = "rules_prisma-master", | ||
url = "https://github.com/CooperBills/rules_prisma/archive/refs/heads/master.zip", | ||
) |
Oops, something went wrong.