source-maps Questions
2
I'm using UglifyJS to minify and uglify my sources, and Sentry to report errors from my production environment.
In order to get errors from Sentry, in a readable manner, I need to add source...
Roid asked 7/12, 2014 at 17:29
3
I would like to debug production website, but I don't want to upload the map file on the server (for privacy reason, because it is public right ?).
Is it possible ?
Herrod asked 27/3, 2013 at 14:28
9
Solved
When I'm loading the minified (through UglifyJS) version of my AngularJS application, I get the following error in the console:
Unknown provider: aProvider <- a
Now, I realize that this is du...
Readership asked 10/2, 2014 at 21:51
1
Solved
I'm trying to get webpack to output correct sourcemaps for a React project that's split into app and vendor chunks using CommonsChunkPlugin and minified using UglifyJsPlugin. This is for production...
Marsh asked 8/7, 2016 at 16:13
1
I am starting to use source maps for my SASS code for debugging in Chrome.
The way I understood it to work was that Chrome requested in the stylesheet resource and the .map resource, yet I only se...
Tien asked 9/7, 2015 at 15:25
2
Solved
I have some errors from minified code in production. I have sourcemaps not in production. I'd like to (after the fact) use source maps in a way to convert my stack trace into a human readable stack...
Lasonde asked 18/9, 2015 at 0:35
2
I'm working on a Typescript project that is transpiled to ES5 JS and then run through browserify to create a single .js bundle and sourcemap. The bundled sourcemaps point to the transpiled JS rathe...
Theodolite asked 24/11, 2015 at 20:45
1
I have some JavaScript code that is compiled to commonJS modules from arbitrary compile-to-JS languages and I would like to debug the browserified code using sourcemaps.
So my files have a //# sou...
Adversative asked 6/6, 2014 at 16:44
1
I'm having problems with CSS within a tag and source-maps.
In order to improve the load time of my project, I have changed the way I put the CSS in my HTML, turning this:
<html>
<head&g...
Malignancy asked 19/8, 2015 at 8:47
1
I have added some stuff like Babel and closure compiler to my hobby project only to find out Chrome doesn't hit breakpoints in my mapped files.
Here is a snippet that reproduces the problem:
...
Acrophobia asked 9/5, 2016 at 21:47
1
Solved
I'm a big fan of source maps for javascript and SASS; however, I don't want to load source maps into production for a couple of reasons: the original source code is available and it's not a good us...
Coltish asked 24/3, 2016 at 15:52
1
Solved
Visual Studio 2013 UP5 + Web Essential's (v. 2.6.36) generated css.map files are invalid in "Google Chrome", however it is valid in "Firefox". Due to this it became impossible to debug less files i...
Pinnatisect asked 21/3, 2016 at 14:28
3
Solved
Working on building JavaScript sourcemaps into my workflow and I've been looking for some documentation on a particular part of debugging source maps. In the picture below I'm running compressed Ja...
Shammy asked 6/10, 2014 at 21:31
2
I've created a Github repo that has all the source code related to this question. I'm able to load build/index.html in the browser after running npm install. However, when I view the sources tab in...
Loraine asked 14/3, 2016 at 5:3
1
I'm learning React and JSX and using webpack to compile but when I throw in 'debugger' into my component, the line isn't matched when I'm in Chrome Dev Tools' Sources tab (in general the sources do...
Uncovenanted asked 12/3, 2016 at 23:25
0
I'm running Chrome 48.0 and lately when I try to place breakpoints in the developer console, sometimes they will refuse to be placed at certain lines and instead jump to another line instead. Almos...
Fincher asked 23/2, 2016 at 16:14
1
I've tried googling, and there's some good info about how A-to-B source maps work, but I can't find any explanation of the logistics of A-to-B-to-C source maps.
For example, with Browserify it's p...
Blare asked 2/2, 2015 at 13:43
2
Solved
I'm trying to write a gulp task allowing me to use modules in JS (CommonJS is fine), using browserify + 6to5. I also want source mapping to work.
So:
1. I write modules using ES6 syntax.
2. 6to...
Inclinometer asked 22/1, 2015 at 11:29
1
Solved
I made some source+map concatenation and result works in Firefox and Chrome, but does not even request bundle.js.map from webserver in MS Edge and IE11.
Actual JS file is served from http://localh...
Eleonoreeleoptene asked 8/1, 2016 at 22:17
2
I have a function inside a ES6 class:
class Test {
// Omitted code for brevity
loadEvents() {
$.get('/api/v1/events', (data) => {
this.actions.setEvents(data);
});
}
}
Babel transpiles ...
Gerrard asked 31/8, 2015 at 17:20
1
How can I use GWT SuperDevMode source maps with IE11? Does it work at all?
I tried to right click the file tab in IE debugger view and the "choose source map" option. However, the file dialog only ...
Unequivocal asked 1/12, 2015 at 15:30
1
Solved
I am using the outFile option in the tsconfig.json to compile my typescript files into one .js file.
I am generating a source map.
Error messages are not referenced to the typescript file though.
...
Cyrille asked 4/12, 2015 at 13:43
2
Solved
I have .ts files compiled to .js and .js.map files by my editor and am bundling the .js files using webpack. (I don't want webpack to be responsible for compiling the .ts because then the errors wo...
Northwards asked 19/11, 2015 at 4:2
1
Solved
My current webpack.config file
module.exports = {
entry: "./entry.js",
output: {
devtoolLineToLine: true,
sourceMapFilename: "./bundle.js.map",
pathinfo: true,
path: __dir...
Pout asked 18/11, 2015 at 17:13
1
I'm using webpack-dev-server -d --inline to serve my dist/app.js file generated through webpack. I've activated source mapping and it is generating an app.js.map file in my dist/ folder, along with...
Jambeau asked 7/11, 2015 at 17:45
© 2022 - 2024 — McMap. All rights reserved.