Hoang Nguyen
c991be4740
Nothing to see here yet, except: - Add `nogo` support. Closes #2 (I only use the analyzers from golang.org/x/tools, so nogo right now is not really on par with golangci-lint) - Remove golangci-lint - Fill out providers.toml file (it was daunting -_-) - Update bazel deps
19 lines
511 B
Python
19 lines
511 B
Python
# SPDX-FileCopyrightText: 2023 Hoang Nguyen <folliekazetani@protonmail.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
load("@rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "pulumi-schema_lib",
|
|
srcs = ["main.go"],
|
|
importpath = "gitlab.com/FollieHiyuki/cuelumi/tools/pulumi-schema",
|
|
visibility = ["//visibility:private"],
|
|
deps = ["//internal/cmd"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "pulumi-schema",
|
|
embed = [":pulumi-schema_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|