generated from aspect-build/aspect-cli-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update to use config.yaml plugin configuration for Aspect CLI 5…
….2.0 (#1)
- Loading branch information
1 parent
f4863e1
commit aa176ef
Showing
7 changed files
with
28 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Configuration of plugins to the Aspect CLI | ||
# See https://docs.aspect.build/v/cli/plugins | ||
plugins: | ||
- name: augment-error | ||
# This file is created by running `bazel build :dev` so that we can easily test local changes. | ||
# Since the bazel-bin folder is in .gitignore, you'll get a warning on the first run. | ||
# Users will install the plugin from a pre-built binary, using the instructions in the release notes. | ||
from: bazel-bin/plugin | ||
# The possible log levels are: TRACE, DEBUG, INFO, WARN, ERROR, OFF. | ||
# NB: to diagnose plugin crashes, use DEBUG | ||
log_level: WARN | ||
properties: | ||
error_mappings: | ||
demo: this message helps our devs understand failures with the string "demo" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
To use this plugin, add it to your `.aspect/cli/plugins.yaml` file like so: | ||
To use this plugin, add it to your `.aspect/cli/config.yaml` file like so: | ||
|
||
``` | ||
- name: hello-world | ||
from: github.com/aspect-build/aspect-cli-plugin-template | ||
version: ${GITHUB_REF_NAME} | ||
plugins: | ||
- name: augment-error | ||
from: github.com/aspect-build/plugin-augment-error | ||
version: ${GITHUB_REF_NAME} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters