Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes m1 container segfault (Issue #4629) #4630

Merged
merged 1 commit into from Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/config.exs
Expand Up @@ -18,7 +18,7 @@ if Mix.env() == :dev do
end

config :esbuild,
version: "0.13.5",
version: "0.14.0",
module: esbuild.(~w(--format=esm --sourcemap --outfile=../priv/static/phoenix.esm.js)),
main: esbuild.(~w(--format=cjs --sourcemap --outfile=../priv/static/phoenix.cjs.js)),
cdn:
Expand Down
2 changes: 1 addition & 1 deletion installer/templates/phx_single/config/config.exs
Expand Up @@ -33,7 +33,7 @@ config :swoosh, :api_client, false<% end %><%= if @assets do %>

# Configure esbuild (the version is required)
config :esbuild,
version: "0.13.5",
version: "0.14.0",
default: [
args:
~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*),
Expand Down
Expand Up @@ -13,7 +13,7 @@ config :<%= @web_app_name %>, <%= @endpoint_module %>,

# Configure esbuild (the version is required)
config :esbuild,
version: "0.13.5",
version: "0.14.0",
default: [
args:
~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*),
Expand Down