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

Make it easier to include Erlang LS as a dependency. #1229

Merged
merged 2 commits into from
Mar 2, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add dummy .app.src file for Erlang LS
To simplify inclusion (of an umbrella app) as a build dependency.
  • Loading branch information
robertoaloi committed Mar 2, 2022
commit d5a208014d50fff274b356fcc75517e140391918
11 changes: 11 additions & 0 deletions src/erlang_ls.app.src
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{application, erlang_ls, [
{description, "Erlang LS"},
{vsn, git},
{registered, []},
{applications, [kernel, stdlib, els_core, els_lsp, els_dap]},
{env, []},
{modules, []},

{licenses, ["Apache 2.0"]},
{links, []}
]}.