-
-
Notifications
You must be signed in to change notification settings - Fork 40
crash with source-map instead of inline-source-map #968
Comments
Hi @farfromrefug, Thanks for reporting that! As |
@miroslavaivanova @Fatme @DimitarTachev this is not fixed. The generated source map is wrong. I tested and you just need to test for |
Hi @farfromrefug, Thanks for reporting back. We've fixed the app crash but we've missed the You are right about the fix. I've just opened a PR with it. P.S. Feel free to directly open PRs with such fixes. |
@DimitarTachev Thanks! Sorry for not creating the PR, Did not really have time to create one (lazy me!) |
Environment
Provide version numbers for the following components (information can be retrieved by running
tns info
in your project folder or by inspecting thepackage.json
of the project):I have an issue with source maps and the latest versions of
nativescript-dev-webpack
Using the template webpack config file it works.
However i use mine which uses
source-map
instead ofinline-source-map
, my app crashes saying it cant requireruntime.js.map
I think the issue comes from
GenerateNativeScriptEntryPointsPlugin
.It was working before the RC, and now it does not.
What's bugging me is that i think it should work. The file
runtime.js.map
exists and is part of the APK in the assets/app folder.the
require('./runtime.js.map')
is done in theruntime.js
, so it should work just fine.By the way it's kind of a requirement for me to use
source-map
. I use Bugsnag where map files are uploaded using.map
files (i then filter with gradle so that map files are not included in the apk for size reasons).Anyone has any idea why it could fail to require the
.map
file?The text was updated successfully, but these errors were encountered: