You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2018. It is now read-only.
$ uname -a
Darwin hexbox 16.1.0 Darwin Kernel Version 16.1.0: Thu Oct 13 21:26:57 PDT 2016; root:xnu-3789.21.3~60/RELEASE_X86_64 x86_64
Steps to Reproduce
$ mkdir newproject
$ cd newproject/
$ elm package install
Some new packages are needed. Here is the upgrade plan.
Install:
elm-lang/core 5.1.1
elm-lang/html 2.0.0
elm-lang/virtual-dom 2.0.4
Do you approve of this plan? [Y/n] Y
Starting downloads...
● elm-lang/html 2.0.0
● elm-lang/virtual-dom 2.0.4
● elm-lang/core 5.1.1
Packages configured successfully!
Expected
The created directory to be a hidden directory named .elm-stuff, or preferably just .elm.
Actual
The created directory is a normal directory named elm-stuff.
Notes
This is a common standard. Git, for example, puts all of its metadata in a hidden .git directory. Elm projects will frequently be used in conjunction with git, so it makes sense to use the same standard instead of inventing our own.
It also has the nice benefit of keeping the output of ls clean and focused on the project being worked on rather than cluttering it with metadata that almost never needs direct attention.
Platform
Steps to Reproduce
Expected
The created directory to be a hidden directory named
.elm-stuff, or preferably just.elm.Actual
The created directory is a normal directory named
elm-stuff.Notes
This is a common standard. Git, for example, puts all of its metadata in a hidden
.gitdirectory. Elm projects will frequently be used in conjunction with git, so it makes sense to use the same standard instead of inventing our own.It also has the nice benefit of keeping the output of
lsclean and focused on the project being worked on rather than cluttering it with metadata that almost never needs direct attention.