new broken build
commit
8da5531c50
@ -1 +1,27 @@
|
||||
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
|
||||
|
@ -0,0 +1,34 @@
|
||||
load("@rules_go//go:def.bzl", "go_library", "go_test")
|
||||
load("@gazelle//:def.bzl", "gazelle")
|
||||
|
||||
gazelle(name = "gazelle")
|
||||
|
||||
go_library(
|
||||
name = "obsidian-markdown",
|
||||
srcs = [
|
||||
"lexemetype_string.go",
|
||||
"lexer.go",
|
||||
"states.go",
|
||||
"wikilink.go",
|
||||
],
|
||||
importpath = "code.ndumas.com/ndumas/obsidian-markdown",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"@org_uber_go_zap//:zap",
|
||||
"@org_uber_go_zap//zapcore",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "obsidian-markdown_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"lexer_test.go",
|
||||
"wikilink_test.go",
|
||||
],
|
||||
deps = [
|
||||
":obsidian-markdown",
|
||||
"@com_github_stretchr_testify//assert",
|
||||
"@org_uber_go_zap//zapcore",
|
||||
],
|
||||
)
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue