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
Putting in the assets directory a symbolic link to a directory with .coffee files results in a java.lang.IllegalArgumentException: runOps function returned results for unknown ops.
The exception is thrown by sbt-web here because prunedOpsSet are the paths with the symbolic links and resultOpsSet are the canonical paths (no symbolic link). The canonical path seems to be resolved by sbt-js-engine here.
The assets task fails, but coffeescript compilation seems to work, the .js and .js.map files are created in the "right" place.
I am not sure from which plugin the issue comes from and what would be the correct way to fix it, but it would be great to be able to put symbolic links.
The text was updated successfully, but these errors were encountered:
Putting in the assets directory a symbolic link to a directory with
.coffee
files results in ajava.lang.IllegalArgumentException: runOps function returned results for unknown ops
.The exception is thrown by sbt-web here because
prunedOpsSet
are the paths with the symbolic links andresultOpsSet
are the canonical paths (no symbolic link). The canonical path seems to be resolved by sbt-js-engine here.The
assets
task fails, but coffeescript compilation seems to work, the.js
and.js.map
files are created in the "right" place.I am not sure from which plugin the issue comes from and what would be the correct way to fix it, but it would be great to be able to put symbolic links.
The text was updated successfully, but these errors were encountered: