We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23dc20f commit 5562623Copy full SHA for 5562623
gulpfile.js
@@ -17,11 +17,12 @@ const draftJsDist = './node_modules/draft-js/dist';
17
gulp.task('vendorDraftJsCss', function () {
18
return gulp
19
.src([`${draftJsDist}/Draft.css`])
20
- .pipe(rename('draft-js.component.css'))
21
.pipe(gap.prependText('::ng-deep { '))
22
.pipe(gap.prependText('/* This file is automatically generated from Draft.css upstream */'))
23
.pipe(gap.prependText('/* Do not edit */'))
24
.pipe(gap.appendText(' }'))
+ .pipe(compileSass())
25
+ .pipe(rename('draft-js.component.css'))
26
.pipe(gulp.dest(`${src}/${lib}`));
27
});
28
0 commit comments