Skip to content

Commit

Permalink
Add missing package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonmaur committed Apr 25, 2023
1 parent 7177b0b commit fadf64e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.0.1

- Added missing package.json to files

## v1.0.0

- Initial release 🎉
14 changes: 12 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule PhoenixTurnstile.MixProject do
def project do
[
app: :phoenix_turnstile,
version: "1.0.0",
version: "1.0.1",
elixir: "~> 1.13",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
Expand All @@ -18,7 +18,17 @@ defmodule PhoenixTurnstile.MixProject do
authors: ["Jason Maurer"],
package: [
licenses: ["MIT"],
links: %{"GitHub" => @url}
links: %{"GitHub" => @url},
files: [
"lib",
"priv",
".formatter.exs",
"mix.exs",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
],
docs: [
main: "readme",
Expand Down

0 comments on commit fadf64e

Please sign in to comment.