From 7fc0f4b45ad022127f116e127525f0fc332c1af6 Mon Sep 17 00:00:00 2001 From: "cdviz-intbot[bot]" Date: Thu, 30 Apr 2026 15:31:48 +0000 Subject: [PATCH 1/2] chore: cdviz-db/mise.toml sqruff version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- cdviz-db/mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdviz-db/mise.toml b/cdviz-db/mise.toml index 022095bd..85bb5c7c 100644 --- a/cdviz-db/mise.toml +++ b/cdviz-db/mise.toml @@ -6,7 +6,7 @@ PG_LOCAL_URL = "postgres://{{env.PG_LOCAL_USER}}:{{env.PG_LOCAL_PWD}}@127.0.0.1: [tools] # docker = "latest" "github:golang-migrate/migrate" = "4.19.1" -"github:quarylabs/sqruff" = "0.37.3" +"github:quarylabs/sqruff" = "0.38.0" "bun" = "1.3.13" [tasks."migrate:create"] From 74c43576c15ae70510510ad4da080a5024cbe791 Mon Sep 17 00:00:00 2001 From: "cdviz-intbot[bot]" Date: Thu, 30 Apr 2026 15:32:00 +0000 Subject: [PATCH 2/2] chore: cdviz-grafana/dashboards_generator/mise.toml biome version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- cdviz-grafana/dashboards_generator/mise.toml | 76 +++++++++----------- 1 file changed, 35 insertions(+), 41 deletions(-) diff --git a/cdviz-grafana/dashboards_generator/mise.toml b/cdviz-grafana/dashboards_generator/mise.toml index ed4314a0..f5404957 100644 --- a/cdviz-grafana/dashboards_generator/mise.toml +++ b/cdviz-grafana/dashboards_generator/mise.toml @@ -1,42 +1,36 @@ + +[tasks] + + [tasks.build] + description = "build dashboards" + outputs = ["dashboards/*.json"] + run = "bun run src/index.ts --output ../dashboards" + sources = ["*/src/**"] + wait_for = [":install:deps", ":check", ":test"] + + [tasks.check] + description = "lint" + run = ["bun run tsc", "biome check"] + wait_for = [":install:deps"] + + [tasks.ci] + depends = [":install:deps", ":check", ":build", ":test"] + description = "tasks for CI (build, test, ...)" + + [tasks.format] + alias = "fmt" + description = "format" + run = ["biome format --write", "biome check --write"] + wait_for = [":install:deps"] + + [tasks."install:deps"] + run = "bun install" + + [tasks.test] + depends = [":check"] + run = "bun test" + wait_for = [":install:deps"] + [tools] -"bun" = "1.3.13" -"biome" = "2.2.0" -# "watchexec" = "latest" - -[tasks."build"] -description = "build dashboards" -run = "bun run src/index.ts --output ../dashboards" -outputs = ["dashboards/*.json"] -sources = ["*/src/**"] -wait_for = [":install:deps", ":check", ":test"] - -[tasks."install:deps"] -run = "bun install" - -[tasks.check] -# use https://biomejs.dev/guides/getting-started/ -description = "lint" -run = [ - "bun run tsc", - "biome check", -] -wait_for = [":install:deps"] - -[tasks.format] -alias = "fmt" -# use https://biomejs.dev/guides/getting-started/ -description = "format" -run = [ - "biome format --write", - "biome check --write", -] -wait_for = [":install:deps"] - -[tasks.test] -depends = [":check"] -run = "bun test" -wait_for = [":install:deps"] - -[tasks.ci] -description = "tasks for CI (build, test, ...)" -depends = [":install:deps", ":check", ":build", ":test"] + biome = "1.9.4" + bun = "1.3.13"