You've already forked tribes-plugin-new
f1838e4d7d
Create the tribes-plugin-new Igniter generator package with standalone project generation, install/page tasks, upgrade hook scaffolding, and focused tests.
37 lines
712 B
Elixir
37 lines
712 B
Elixir
defmodule TribesPlugin.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :tribes_plugin,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.19",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps(),
|
|
description: "Igniter generators for Tribes plugins",
|
|
package: package()
|
|
]
|
|
end
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
def application do
|
|
[
|
|
extra_applications: [:logger]
|
|
]
|
|
end
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
defp deps do
|
|
[
|
|
{:igniter, "~> 0.7", optional: true}
|
|
]
|
|
end
|
|
|
|
defp package do
|
|
[
|
|
licenses: ["MIT"],
|
|
links: %{"Tribes" => "https://github.com/your-org/tribes"}
|
|
]
|
|
end
|
|
end
|