Vale the Violet Mote

Results 30 comments of Vale the Violet Mote

I'm having the same problem. Fresh install, basic project made from the tutorial. I'm on Windows 10. Where/why/how is it expecting to get these files? elm-stuff/packages/elm/core/1.0.4/elm.json elm-stuff/packages/elm/json/1.1.3/elm.json elm-stuff/packages/elm/html/1.0.0/elm.json elm-stuff/packages/elm/http/2.0.0/elm.json Is...

It looks like... In elm-analyse\dist\app\util\file-gatherer.js ```js function getDependencyFiles(directory, dep) { var depPath = directory + "/elm-stuff/packages/" + dep.name + "/" + dep.version; var depPackageFile = require(depPath + '/elm.json'); var unfilteredTargetFiles...

So now with a shimmy: ```js function getDependencyFiles(directory, dep) { var elm_version = "0.19.1"; //

On my home machine now. Works just fine there. Of note, getDependencyFiles doesn't even appear to ever be called on this setup. So a hunt for what logic calls gDF...

More accurately, seems to be something to do with `loadDependencyFiles`. I'm not proficient in Elm whatsoever but I'll try to see how it's called.

I don't even need a Main.elm @akhilman Are you behind a proxy? Looking at this... (src/Analyser/Files/DependencyLoader.elm) : ```elm OnOnlineDocs result -> case result of Nothing -> ( model, Cmd.none )...

`DependencyLoader init` -> `DependencyHandler.readFromDisk` -> `Failed` -> `DependencyHandler.loadOnlineDocumentation` --> ? but I can't get much further here. I don't understand what occurs in what order: ```elm -- This.. (loadOnlineDocumentation)? Failed...

CONFIRMED. `docker run -it debian /bin/bash` ```bash apt update -y && apt install curl npm -y npm install -g npm cd ~/ && curl -L -o elm.gz https://github.com/elm/compiler/releases/download/0.19.1/binary-for-linux-64-bit.gz gzip -d...

I can get it to perform correctly at work if I set `HTTP_PROXY`, `HTTPS_PROXY`, and `NODE_TLS_REJECT_UNAUTHORIZED=0`. Now getting VSCode to do that for the tooling is a different matter altogether........

At the very least, I would suggest that ```elm OnOnlineDocs result -> case result of Nothing -> ( model, Cmd.none ) Just (Err _) -> ( { model | state...