You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We noticed in our projects, that when upgrading the package to version 7 (and later 8), we started to have intermittent issues when compiling production assets on CI:
This is not at all problem with version 6 and so the solution for us has been to downgrade back to it.
We spent some time trying to identify the problem and noticed that the way the Elm compiler is used has changed in version 7. The compile method is now used instead of compileToString (
) which seems the only significant downstream change.
What we are wondering is whether other have the same issue and if it would be worth having the option to use synchronous compilation, perhaps optionally?
The text was updated successfully, but these errors were encountered:
I haven't tried the previous versions, but I do get the same errors when importing multiple Elm files into the same entry .js file for version 8. Here's a example:
➤ YN0000: +-------------------------------------------------------------------------------
➤ YN0000: | Corrupt File: /Users/runner/work/<path/to/elm-stuff>/0.19.1/o.dat
➤ YN0000: | Byte Offset: 593610
➤ YN0000: | Message: not enough bytes
➤ YN0000: |
➤ YN0000: | Please report this to https://github.com/elm/compiler/issues
➤ YN0000: | Trying to continue anyway.
➤ YN0000: +-------------------------------------------------------------------------------
➤ YN0000:
➤ YN0000: -- CORRUPT CACHE ---------------------------------------------------------------
➤ YN0000:
➤ YN0000: It looks like some of the information cached in elm-stuff/ has been corrupted.
➤ YN0000:
➤ YN0000: Try deleting your elm-stuff/ directory to get unstuck.
Not sure if you have the same setup since I would assume importing two Elm modules is fairly uncommon, but my project required it nonetheless. Since this was a race condition for me, it only happened occasionally, and only on Github Actions (it seems to work fine on my own computer).
I looked around and saw that there was already a solution on Elm's Snowpack plugin that uses locks to guarantee sequential compilation. Looking at the code, I would assume it wouldn't be too difficult to implement here, if the library authors wanted.
We noticed in our projects, that when upgrading the package to version 7 (and later 8), we started to have intermittent issues when compiling production assets on CI:
This is not at all problem with version 6 and so the solution for us has been to downgrade back to it.
We spent some time trying to identify the problem and noticed that the way the Elm compiler is used has changed in version 7. The
compile
method is now used instead ofcompileToString
(elm-webpack-loader/index.js
Line 171 in bbce36b
What we are wondering is whether other have the same issue and if it would be worth having the option to use synchronous compilation, perhaps optionally?
The text was updated successfully, but these errors were encountered: