Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion collector.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ out = "./definitions"
#
# `modules` lists the modules a source is expected to produce. Polling warns
# and skips one that is missing rather than failing, so a module still under
# development doesn't need to be exported every time.
# development doesn't need to be exported every time. It does the same for
# the reverse case: a module the export produced but that isn't listed here
# is warned about and discarded rather than failing the release.

[[source]]
name = "taurus"
Expand All @@ -40,6 +42,9 @@ export = [
"export_definitions",
"--",
]
# Without this, taurus defaults to development mode and also exports its
# dev-only modules (e.g. taurus-dev), which don't belong in a release.
env = { ENVIRONMENT = "production" }
layout = "tree"
modules = [
"taurus-boolean",
Expand Down