Compare commits
14 Commits
Author | SHA1 | Date |
---|---|---|
Nick Dumas | dc04526e49 | 1 year ago |
Nick Dumas | 93149522cb | 1 year ago |
Nick Dumas | a68b4b5cbf | 1 year ago |
Nick Dumas | e5650fb492 | 1 year ago |
Nick Dumas | c5d366f7b7 | 1 year ago |
Nick Dumas | 248298cced | 1 year ago |
Nick Dumas | 20cc70b47b | 1 year ago |
Nick Dumas | 9db278952d | 1 year ago |
Nick Dumas | 4da393060f | 1 year ago |
Nick Dumas | 61f1d12e77 | 1 year ago |
Nick Dumas | e1486ea2d7 | 1 year ago |
Nick Dumas | e26cc2106d | 1 year ago |
Nick Dumas | 3c180eb02c | 1 year ago |
Nick Dumas | a366cf4e5a | 1 year ago |
@ -1 +1,27 @@
|
|||||||
common --experimental_enable_bzlmod
|
common --experimental_enable_bzlmod
|
||||||
|
|
||||||
|
# Disable lockfiles until it works properly.
|
||||||
|
# https://github.com/bazelbuild/bazel/issues/19068
|
||||||
|
common --lockfile_mode=off
|
||||||
|
|
||||||
|
###############################
|
||||||
|
# Directory structure #
|
||||||
|
###############################
|
||||||
|
|
||||||
|
# Artifacts are typically placed in a directory called "dist"
|
||||||
|
# Be aware that this setup 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/
|
||||||
|
|
||||||
|
###############################
|
||||||
|
# Output #
|
||||||
|
###############################
|
||||||
|
|
||||||
|
# A more useful default output mode for bazel query, which
|
||||||
|
# prints "ng_module rule //foo:bar" instead of just "//foo:bar".
|
||||||
|
query --output=label_kind
|
||||||
|
|
||||||
|
# By default, failing tests don't print any output, it's logged to a
|
||||||
|
# file instead.
|
||||||
|
test --test_output=errors
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue