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
Source line points to root parent rule in the .less file instead to the nested rule. Unless its ':before' rule, in this case it points to actual line where rule is defined.
For element i:before, sourcemap indicates source line navbar.less:11 (correct behaviour)
For element i.logo sourcemap indicates source line navbar.less:3 (expected is 5)
In fact any other element underneath ch-nav-bar is reported to have rule defined on line navbar.less:3
Gulp task:
gulp.task('compile-app.css',function(){returngulp.src(project.LESS_FILES).pipe(sourceMaps.init()).pipe(less())// compatible plugin used : 'gulp-less'.pipe(sourceMaps.write()).pipe(gulp.dest(BUILD_PATH));});
The text was updated successfully, but these errors were encountered:
Source line points to root parent rule in the .less file instead to the nested rule. Unless its ':before' rule, in this case it points to actual line where rule is defined.
Example navbar.less:
For element i:before, sourcemap indicates source line navbar.less:11 (correct behaviour)
For element i.logo sourcemap indicates source line navbar.less:3 (expected is 5)
In fact any other element underneath ch-nav-bar is reported to have rule defined on line navbar.less:3
Gulp task:
The text was updated successfully, but these errors were encountered: