Skip to content

Commit

Permalink
Use Bun 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
crbelaus committed Apr 30, 2024
1 parent 9645ccd commit b1fbb0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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__)
Expand Down Expand Up @@ -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__),
Expand Down
2 changes: 1 addition & 1 deletion config/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Config

if Mix.env() == :test do
config :bun,
version: "1.0.33",
version: "1.1.6",
another: [
args: ["--version"]
]
Expand Down
2 changes: 1 addition & 1 deletion lib/bun.ex
Original file line number Diff line number Diff line change
@@ -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).
Expand Down

0 comments on commit b1fbb0f

Please sign in to comment.