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
I've been using scl-lib in an OpenSCD core extension.
When I set a break point and try to trace through scl-lib, it fails because the source map refers to information not included in the package. This is true for a plugin which I am testing on locally (using @web/dev-server), however it does not appear to be a problem on the built plugin (using rollup).
For example, locally I have installed the current scl-lib version (0.5.9) and am trying to debug the insertIED function:
What I see in my node_modules folder is (truncated view):
I've been using scl-lib in an OpenSCD core extension.
When I set a break point and try to trace through scl-lib, it fails because the source map refers to information not included in the package. This is true for a plugin which I am testing on locally (using
@web/dev-server
), however it does not appear to be a problem on the built plugin (using rollup).For example, locally I have installed the current
scl-lib
version (0.5.9
) and am trying to debug theinsertIED
function:What I see in my
node_modules
folder is (truncated view):If I open
node_modules/@openenergytools/scl-lib/dist/tIED/insertIED.js.map
, the reference is to../../tIED/insertIED.ts
but these files are not included in the package...
I think this is why my browser barfs at it with the following 404:
For now, I've unticked "Enable JavaScript Source Maps" to force Chrome to use only the Javascript and not look for the Typescript files.
Ideally we'd either:
The text was updated successfully, but these errors were encountered: