From b1fbb0f8428386ba26996551bf23bc97d6f4349f Mon Sep 17 00:00:00 2001 From: crbelaus Date: Tue, 30 Apr 2024 18:26:03 +0200 Subject: [PATCH] Use Bun 1.1.6 --- README.md | 6 +++--- config/config.exs | 2 +- lib/bun.ex | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7edfaea..b3b251b 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Once installed, change your config (i.e. `config/config.exs` or `config/runtime.exs`) to pick your bun version of choice: ```elixir -config :bun, version: "1.0.33" +config :bun, version: "1.1.6" ``` Now you can install bun by running: @@ -71,7 +71,7 @@ directory, the OS environment, and default arguments to the ```elixir config :bun, - version: "1.0.33", + version: "1.1.6", default: [ args: ~w(build js/app.js), cd: Path.expand("../assets", __DIR__) @@ -101,7 +101,7 @@ Now let's change `config/config.exs` to configure `bun` to use ```elixir config :bun, - version: "1.0.33", + version: "1.1.6", default: [ args: ~w(build js/app.js --outdir=../priv/static/assets --external /fonts/* --external /images/*), cd: Path.expand("../assets", __DIR__), diff --git a/config/config.exs b/config/config.exs index 22c48ed..28b40ec 100644 --- a/config/config.exs +++ b/config/config.exs @@ -2,7 +2,7 @@ import Config if Mix.env() == :test do config :bun, - version: "1.0.33", + version: "1.1.6", another: [ args: ["--version"] ] diff --git a/lib/bun.ex b/lib/bun.ex index f984026..de83da4 100644 --- a/lib/bun.ex +++ b/lib/bun.ex @@ -1,6 +1,6 @@ defmodule Bun do # https://github.com/oven-sh/bun/releases - @latest_version "1.0.33" + @latest_version "1.1.6" @moduledoc """ Bun is an installer and runner for [bun](https://bun.sh).