cuemata/BUILD.bazel

25 lines
592 B
Python

# SPDX-FileCopyrightText: 2023 Hoang Nguyen <folliekazetani@protonmail.com>
#
# SPDX-License-Identifier: Apache-2.0
load("@gazelle//:def.bzl", "gazelle")
load("@rules_go//go:def.bzl", "TOOLS_NOGO", "nogo")
# gazelle:prefix gitlab.com/folliehiyuki/cuemata
# gazelle:exclude cue.mod
# gazelle:exclude examples
# gazelle:exclude schemata
gazelle(name = "gazelle")
nogo(
name = "nogo_vet",
config = "nogo_config.json",
visibility = ["//visibility:public"],
deps = TOOLS_NOGO,
)
sh_binary(
name = "gen_pulumi_metaschema",
srcs = ["//tools:gen-pulumi-metaschema.sh"],
)