-
Notifications
You must be signed in to change notification settings - Fork 67
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
Compile buffer and preview buffer create local elm artifacts #38
Comments
Can you post the contents of your |
Closing due to inactivity, feel free to re-open if this is still an issue. |
I'm having the same problem as stated above. @Bogdanp, can we re-open this issue, please? My elm source files are in the "src/elm" subdirectory. Here is my elm-package.json contents: {
"version": "1.0.0",
"summary": "helpful summary of your project, less than 80 characters",
"repository": "https://github.com/user/project.git",
"license": "BSD3",
"source-directories": [
"src/elm"
],
"exposed-modules": [],
"dependencies": {
"circuithub/elm-number-format": "1.0.2 <= v < 2.0.0",
"elm-lang/core": "3.0.0 <= v < 4.0.0",
"evancz/elm-effects": "2.0.1 <= v < 3.0.0",
"evancz/elm-html": "4.0.2 <= v < 5.0.0",
"evancz/start-app": "2.0.2 <= v < 3.0.0"
},
"elm-version": "0.16.0 <= v < 0.17.0"
} |
I've re-opened the issue. Can you post the result of evaluating |
I did this in the shell: cd ~/documents/elm/password
emacs src/elm/TextField.elm In emacs I ran the command you gave and it resulted in this: I'm running emacs 24.5.1 on OSX 10.10.5. I'm fairly sure that I'm using elm-mode-20160104.233 from elpa. While writing this it occurred to me to try commenting out stuff in my emacs init file. It turns out that the problem only occurs when I have this code enabled: (eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook #'flycheck-elm-setup))
(add-hook 'elm-mode-hook
(lambda () (flycheck-mode))) |
My next question would've been "do you have flycheck-elm on by any chance?" :). See this issue bsermons/flycheck-elm#3 |
That was it. I applied the fix given in bsermons/flycheck-elm#3 and now [BTW, elm-mode is great. Thank you for providing and supporting it.] |
Glad to hear it and thanks for the kind words :). |
I have the following project structure:
When I compile the
MyFile.elm
buffer, the process generates a newelm-package.json
andelm-stuff
directory; this also happens for previewing. When I runelm-make src/MyFile.elm
, these artifacts are not created.I'm fairly sure that I'm missing something, I'm just not sure what it is. Thanks.
The text was updated successfully, but these errors were encountered: