fix mix.exs warning

elixir 1.4.0
warning: variable "package" does not exist and is being expanded to "package()", please use parentheses to remove the ambiguity or change the variable name
  /home/ ... /deps/jsx/mix.exs:10
This commit is contained in:
Sergey Ivlev 2016-07-28 11:48:35 +03:00 committed by GitHub
parent ef9818bfd2
commit 7258ab9851

View file

@ -7,7 +7,7 @@ use Mix.Project
version: "2.8.0",
description: "an erlang application for consuming, producing and manipulating json. inspired by yajl",
deps: deps(Mix.env),
package: package,
package: package(),
language: :erlang,
erlc_options: opts(Mix.env)
]