When using the following command:
react-native bundle --entry-file index.ios.js --platform ios --bundle-output ios/main.jsbundle --sourcemap-output ios/index.ios.map
I notice that no //# sourceMappingURL=... is present on the final line of main.jsbundle. It used to be.
Are we expected to add this line ourselves (totally fine)? It's not clear to me if this should be happening automatically or not.
When using the following command:
I notice that no
//# sourceMappingURL=...is present on the final line of main.jsbundle. It used to be.Are we expected to add this line ourselves (totally fine)? It's not clear to me if this should be happening automatically or not.