file icon indicating copy to clipboard operation
file copied to clipboard

PROBLEM BUILDING DEPENDENCIES

Open mewhit opened this issue 5 years ago • 0 comments

Would you like me to update your elm.json accordingly? [Y/n]: y -- PROBLEM BUILDING DEPENDENCIES -----------------------------------------------

I ran into a compilation error when trying to build the following package:

elm/file 1.0.5

This probably means it has package constraints that are too wide. It may be possible to tweak your elm.json to avoid the root problem as a stopgap. Head over to https://elm-lang.org/community to get help figuring out how to take this path!

Note: To help with the root problem, please report this to the package author along with the following information:

elm/bytes 1.0.0
elm/core 1.0.1
elm/json 1.1.0
elm/time 1.0.0

If you want to help out even more, try building the package locally. That should give you much more specific information about why this package is failing to build, which will in turn make it easier for the package author to fix it!


{
    "type": "application",
    "source-directories": [
        "src"
    ],
    "elm-version": "0.19.1",
    "dependencies": {
        "direct": {
            "elm/browser": "1.0.2",
            "elm/core": "1.0.5",
            "elm/html": "1.0.0"
        },
        "indirect": {
            "elm/json": "1.1.3",
            "elm/time": "1.0.0",
            "elm/url": "1.0.0",
            "elm/virtual-dom": "1.0.2"
        }
    },
    "test-dependencies": {
        "direct": {},
        "indirect": {}
    }
}

mewhit avatar Aug 21 '20 15:08 mewhit