Skip to content

Commit 0349c71

Browse files
authored
fix(build): fixed build of styles (#317)
1 parent 4150662 commit 0349c71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gulp.task('scss', () => {
3232
return gulp
3333
.src('src/**/*.scss')
3434
.pipe(replace(/@(import|use) '~.+';/g, (match) => match.replace('~', 'node_modules/')))
35-
.pipe(sass().on('error', sass.logError))
35+
.pipe(sass())
3636
.pipe(gulp.dest(BUILD_DIR_CJS))
3737
.pipe(gulp.dest(BUILD_DIR_ESM))
3838
.pipe(concat('styles.css')) // also bundle all css to single file

src/extensions/yfm/FoldingHeading/plugins/folding.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@use '~@gravity-ui/uikit/styles/mixins.scss' as uikit;
1+
@use 'node_modules/@gravity-ui/uikit/styles/mixins.scss' as uikit;
22

33
.pm-h-folding-hidden {
44
display: none;

0 commit comments

Comments
 (0)