Skip to content

Commit 387e079

Browse files
authored
Merge pull request #3 from elixir-lang/remove-projects
Remove projects directories from expert
2 parents 6b03c85 + c9eced4 commit 387e079

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+29
-926
lines changed

Makefile

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,24 @@
1-
project_dirs = lexical_shared lexical_plugin lexical_test
21
dialyzer_dirs = lexical_shared lexical_plugin
32

4-
compile.all: compile.projects compile.umbrella
3+
compile.all: compile.umbrella
54

6-
dialyzer.all: compile.all dialyzer.projects dialyzer.umbrella
5+
dialyzer.all: compile.all dialyzer.umbrella
76

8-
test.all: test.projects test.umbrella
7+
test.all: test.umbrella
98

10-
dialyzer.plt.all: dialyzer.plt.projects dialyzer.plt.umbrella
9+
dialyzer.plt.all: dialyzer.plt.umbrella
1110

1211
dialyzer.umbrella:
1312
mix dialyzer
1413

15-
dialyzer.projects:
16-
$(foreach dir, $(dialyzer_dirs), cd projects/$(dir) && mix dialyzer && cd ../..;)
17-
18-
dialyzer.plt.projects:
19-
$(foreach dir, $(dialyzer_dirs), cd projects/$(dir) && mix dialyzer --plt && cd ../..;)
20-
2114
dialyzer.plt.umbrella:
2215
mix dialyzer --plt
2316

2417
test.umbrella:
2518
mix test
2619

27-
test.projects:
28-
cd projects
29-
$(foreach dir, $(project_dirs), cd projects/$(dir) && mix test && cd ../..;)
30-
31-
compile.umbrella: compile.projects
20+
compile.umbrella:
3221
mix deps.get
3322
mix compile --skip-umbrella-children --warnings-as-errors
3423

35-
compile.projects:
36-
cd projects
37-
$(foreach dir, $(project_dirs), cd projects/$(dir) && mix deps.get && mix do clean, compile --warnings-as-errors && cd ../..;)
3824

projects/lexical_shared/lib/lexical.ex renamed to apps/common/lib/lexical.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
defmodule Lexical do
22
@moduledoc """
3-
Shared data structures and utilities for the Lexical Language Server.
3+
Common data structures and utilities for the Lexical Language Server.
44
55
If you're building a plugin, You're probably going to want to look at the documentation
66
for core data structures like
File renamed without changes.

0 commit comments

Comments
 (0)