mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
gulp-sass add more methods
- logError - sync
This commit is contained in:
parent
05557455c4
commit
6bec6b3ebe
@ -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'));
|
||||
});
|
||||
2
gulp-sass/gulp-sass.d.ts
vendored
2
gulp-sass/gulp-sass.d.ts
vendored
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user