mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
gulp-sass add more methods
- logError - sync
This commit is contained in:
@@ -12,5 +12,6 @@ gulp.task('sass', function () {
|
||||
gulp.task('sass', function () {
|
||||
gulp.src('./scss/*.scss')
|
||||
.pipe(sass({errLogToConsole: true}))
|
||||
.pipe(sass.sync())
|
||||
.pipe(gulp.dest('./css'));
|
||||
});
|
||||
Vendored
+2
@@ -45,6 +45,8 @@ declare module "gulp-sass" {
|
||||
|
||||
interface Sass {
|
||||
(opts?: Options): NodeJS.ReadWriteStream;
|
||||
logError(error?: string): void;
|
||||
sync(options?: Options): NodeJS.ReadWriteStream;
|
||||
}
|
||||
|
||||
var _tmp: Sass;
|
||||
|
||||
Reference in New Issue
Block a user