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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Something like this:
17
17
18
18
```javascript
19
19
var gulp =require('gulp');
20
-
var sass =require('gulp-sass')
20
+
var sass =require('gulp-sass');
21
21
22
22
gulp.task('sass', function () {
23
23
gulp.src('./scss/*.scss')
@@ -36,7 +36,7 @@ If you pass `errLogToConsole: true` into the options hash, sass errors will be l
36
36
37
37
#### `onSuccess: callback`
38
38
39
-
Pass in your own callback to be called upon successful compilaton by node-sass. The callback has the form `callback(css)`, and is passed the compiled css as a string. Note: This *does not* prevent gulp-sass's default behavior of writing the output css file.
39
+
Pass in your own callback to be called upon successful compilation by node-sass. The callback has the form `callback(css)`, and is passed the compiled css as a string. Note: This *does not* prevent gulp-sass's default behavior of writing the output css file.
0 commit comments