Skip to content

Commit af18254

Browse files
committed
Rename elm directory to webui
Now that it's a real project give it a better name
1 parent cb3b446 commit af18254

Some content is hidden

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

69 files changed

+8
-8
lines changed

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# Frontend tests
2525
- stage: test
2626
install:
27-
- cd elm
27+
- cd webui
2828
- yarn install
2929
- yarn setup
3030
script:
@@ -66,9 +66,9 @@ cache:
6666
- $HOME/.ivy2/cache
6767
# Cache ELM stuff. In particular build-artifacts for tests to avoid needless
6868
# rebuilds
69-
- elm/elm-stuff/packages
70-
- elm/tests/elm-stuff/packages
71-
- elm/tests/elm-stuff/build-artifacts
69+
- webui/elm-stuff/packages
70+
- webui/tests/elm-stuff/packages
71+
- webui/tests/elm-stuff/build-artifacts
7272

7373
after_success:
7474
- bash <(curl -s https://codecov.io/bash)

build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
lazy val webUi = project
2-
.in(file("elm"))
1+
lazy val webui = project
2+
.in(file("webui"))
33
.enablePlugins(YarnPlugin)
44
.settings(
55
name := "Cluster Broccoli Web UI"
@@ -27,7 +27,7 @@ lazy val server = project
2727
buildInfoPackage := "de.frosner.broccoli.build",
2828
PlayKeys.playMonitoredFiles ++= (sourceDirectories in (Compile, TwirlKeys.compileTemplates)).value
2929
)
30-
.dependsOn(webUi)
30+
.dependsOn(webui)
3131

3232
lazy val root = project
3333
.in(file("."))
@@ -64,4 +64,4 @@ lazy val root = project
6464
parallelExecution in Test := false
6565
))
6666
)
67-
.aggregate(webUi, server)
67+
.aggregate(webui, server)

elm/.gitignore webui/.gitignore

File renamed without changes.

elm/README.md webui/README.md

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

elm/src/Ws.elm webui/src/Ws.elm

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

elm/yarn.lock webui/yarn.lock

File renamed without changes.

0 commit comments

Comments
 (0)