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
Not sure if this is the right place or this is easily fixable, but here's my report
vscode takes the documentation for outputStyle from node-sass, which doesn't quite match dart sass in this case.
Instead of displaying only compressed and expanded it shows the definitions for compact and nested also.
If it's not easy to change what autocompletes based on which SASS you're using please dis consider 👍🏼
Example code:
constgulp=require('gulp')constdartSass=require('sass')constgulpSass=require('gulp-sass')(dartSass)functioncompilaSASS(){returngulp.src('./main.scss').pipe(gulpSass({outputStyle: 'compact'// try pressing control space here to change})).pipe(gulp.dest('./build/'))}exports.sass=compilaSASS
The text was updated successfully, but these errors were encountered:
Hello
Not sure if this is the right place or this is easily fixable, but here's my report
vscode takes the documentation for outputStyle from
node-sass
, which doesn't quite match dart sass in this case.Instead of displaying only
compressed
andexpanded
it shows the definitions forcompact
andnested
also.If it's not easy to change what autocompletes based on which SASS you're using please dis consider 👍🏼
Example code:
The text was updated successfully, but these errors were encountered: