forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
21 lines (19 loc) · 901 Bytes
/
Copy pathmise.toml
File metadata and controls
21 lines (19 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[settings]
# Only explicit tasks/tools drive mise here; never act on .go-version,
# .bazelversion, etc.
idiomatic_version_file = false
# Tools that do not fit DotSlash (no prebuilt artifact, or need a runtime) are
# exposed as tasks and run via `mise run <tool>` / `mise <tool>`. Each task scopes
# its own tools so running one installs only that tool, not the whole set.
#
# Task-scoped tools are not written to a lockfile, so the exact versions pinned
# below provide our reproducibility. That loses nothing here since npm packages
# are immutable per version, and the node runtime is checksum-verified by mise's
# core backend on install. This is temporary until we devise a strategy for using
# mise tool stubs in the same way as DotSlash files.
[tasks.dotagents]
description = "Sentry dotagents CLI"
run = "dotagents"
[tasks.dotagents.tools]
node = "24.19.0"
"npm:@sentry/dotagents" = "1.19.0"