SASS /css - view original sources
Categories
(DevTools :: Inspector: Rules, enhancement, P3)
Tracking
(Not tracked)
People
(Reporter: sd, Unassigned)
References
(Blocks 1 open bug)
Details
(Whiteboard: [specification][type:bug][dt-q])
Comment 1•7 years ago
|
||
Comment 2•7 years ago
|
||
Updated•6 years ago
|
Updated•6 years ago
|
Comment 3•6 years ago
|
||
Comment 4•6 years ago
|
||
Closing because we're missing a test case or public website.
Bug reporter mentioned "my webpage" but the domain in the user's email now points at a parked domain.
Please reopen if you can provide more information.
Comment 5•6 years ago
|
||
Can we please re-open this? I just made a project to reproduce it with :D
Video https://vimeo.com/332627353
Demo site https://andreicristianpetcu-angular-hello-world.glitch.me/
Glitch https://glitch.com/~andreicristianpetcu-angular-hello-world
Github https://github.com/andreicristianpetcu/angular-hello-world
Updated•6 years ago
|
Comment 6•6 years ago
|
||
Hmmmm reporter wanted SASS source mappings. My use case has SCSS. It should be the same from a source map point of view, right?
Comment 7•6 years ago
|
||
Is the use case I made good?
need to refresh the page a few times for glitch to load
Comment 8•6 years ago
|
||
Thanks for providing the testcase! I can reproduce the issue now.
Comment 9•5 years ago
|
||
Another affected user https://discourse.mozilla.org/t/finding-sass-sources/47220
Comment 10•5 years ago
|
||
I can add some details here, so we don't need to reference other threads. I'm currently using FF 70.0.1 (64-bit) on Linux Mint 18.3. The issue specifically is with sass sourcemaps, which are generated with gulp sourcemaps usually like this:
gulp.task('dev:styles', function() {
return gulp.src(basePaths.css_src)
.pipe(maps.init())
.pipe(
$.sass({
sourceComments: 'map',
sourceMap: 'sass',
sourceMap: basePaths.css,
outputStyle: 'nested',
includePaths: sassPaths
})
.on('error', $.sass.logError)
)
.pipe(maps.write())
.pipe(gulp.dest(basePaths.css_dist));
});
Using Chromium (!) inspector I can see the original sass file sources; using Firefox I can't. Since I don't use Chromium for anything else, I'd like to figure out what has happened to Firefox, which has worked in the past. I wish I could pin the change to a version number, I really can't remember when I started noticing this issue.
Updated•2 years ago
|
Description
•