elm-community / elm-webpack-loader

Webpack loader for the Elm programming language.
BSD 3-Clause "New" or "Revised" License
532 stars 105 forks source link

Error: Cannot find module 'temp' #200

Open sporto opened 3 years ago

sporto commented 3 years ago

This module uses temp here https://github.com/elm-community/elm-webpack-loader/blob/2bbe487e654231e3531374747c23043b8f440a44/index.js#L5

But it is not in the dependecies in package.json. So I'm getting:

Error: Cannot find module 'temp'

If you have elm-test in your project this doesn't fail. Because elm-test requires that dependecy indirectly. With new tools like elm-test-rs there is no need to use the elm-test npm package. So this dependecy should be in the package.json for this project.

Thanks