From 6f4aa6875c73e4d7253f85b4319b2de4027a9170 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Mon, 6 May 2024 11:54:40 +0000 Subject: [PATCH] feat(mise): add task runner [Task][0] is a simpler and more intuitive alternative to `make`. [0]: https://taskfile.dev/ --- Dockerfile | 1 + config/mise/config.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 25e2b0e..91be22d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -207,6 +207,7 @@ RUN ${LOCAL_BIN_HOME}/mise plugins install --force --yes \ ripgrep \ rust \ starship \ + task \ terraform \ tilt \ tmux \ diff --git a/config/mise/config.toml b/config/mise/config.toml index 9f30b43..898659d 100644 --- a/config/mise/config.toml +++ b/config/mise/config.toml @@ -23,6 +23,7 @@ python = "3.12.2" ripgrep = "14.1.0" rust = "1.76.0" starship = "1.17.1" +task = "3.36.0" terraform = "1.7.5" tilt = "0.33.11" tmux = "3.4"