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
If I install osc.js via NPM and link it in the <head> of the HTML page, I get an error saying that this file cannot be found: node_modules/osc/dist/long.js.map
I noticed this file is present in the bower_components folder. I'm not sure why it's looking for it in the main dist folder. Ideas?
The text was updated successfully, but these errors were encountered:
It sounds like the warning you're seeing is related to the debugger trying to load a source map for the Long dependency, which is included in the concatenated osc.js build you're using. It's not actually an error, just your debugger trying to be especially helpful and failing to find the right file.
The root of the issue is that it looks like Long is being included in its minified form, even in the the non-minified build of osc.js. I'll file a ticket about this.
If I install osc.js via NPM and link it in the
<head>
of the HTML page, I get an error saying that this file cannot be found:node_modules/osc/dist/long.js.map
I noticed this file is present in the
bower_components
folder. I'm not sure why it's looking for it in the maindist
folder. Ideas?The text was updated successfully, but these errors were encountered: