This repository has been archived by the owner on Aug 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Javascript error for elm-package.json "repository" strings where the github username starts with a capital when built with '--debug' #128
Comments
Thanks for the issue! Make sure it satisfies this checklist. My human colleagues will appreciate it! Here is what to expect next, and if anyone wants to comment, keep these things in mind. |
NickAger
changed the title
Javascript error for long elm-package.json repositories strings for '--debug'
Javascript error for long elm-package.json repositories strings when '--debug' enabled
Nov 16, 2016
NickAger
changed the title
Javascript error for long elm-package.json repositories strings when '--debug' enabled
Javascript error for long elm-package.json "repository" strings when '--debug' enabled
Nov 16, 2016
NickAger
changed the title
Javascript error for long elm-package.json "repository" strings when '--debug' enabled
Javascript error for long elm-package.json "repository" strings when built with '--debug
Nov 16, 2016
NickAger
changed the title
Javascript error for long elm-package.json "repository" strings when built with '--debug
Javascript error for long elm-package.json "repository" strings when built with '--debug'
Nov 16, 2016
What are other strings you tried? What is the length where it starts messing up? |
NickAger
changed the title
Javascript error for long elm-package.json "repository" strings when built with '--debug'
Javascript error for elm-package.json "repository" strings where user starts with a capital when built with '--debug'
Nov 17, 2016
NickAger
changed the title
Javascript error for elm-package.json "repository" strings where user starts with a capital when built with '--debug'
Javascript error for elm-package.json "repository" strings where the github username starts with a capital when built with '--debug'
Nov 17, 2016
@evancz it turns out not to be related to the length of the repository string, rather to capitalising the initial letter of the github username in the repository string. So the default works: "repository": "https://github.com/user/project.git", whereas changing "repository": "https://github.com/User/project.git", I've edited the title and description to match. |
NickAger
added a commit
to NickAger/elm-slider
that referenced
this issue
Nov 17, 2016
…' so: "repository": "https://github.com/NickAger/elm-slider.git", caused a javascript error for `--debug`, whereas: "repository": "https://github.com/nickager/elm-slider.git", works fine - who would have thought it! See logged issue: elm-lang/elm-make#128
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Tested in 0.18
Buttons.elm
.elm package install
accept plan.elm reactor
elm-package.json
and change:to:
that is
user
has changed toUser
.--debug
flag; that iselm-make Buttons.elm
works as expected.elm-make --debug Buttons.elm
generates the javascript error.Thanks to @lorenzo on slack for locating the issue for me.
The text was updated successfully, but these errors were encountered: