Skip to content

Commit

Permalink
Typo @ README.md (#807)
Browse files Browse the repository at this point in the history
Add missing bracket.
  • Loading branch information
radimvaculik committed Jul 9, 2021
1 parent a90691d commit 8f7683f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -27,7 +27,7 @@ npm install sass gulp-sass --save-dev
`gulp-sass` must be imported into your gulpfile, where you provide it the compiler of your choice. To use `gulp-sass` in a CommonJS module (which is most Node environments), do something like this:

``` js
const sass = require('gulp-sass')(require('sass');
const sass = require('gulp-sass')(require('sass'));
```

To use `gulp-sass` in an ECMAScript module (which is supported in newer Node 14 and later), do something like this:
Expand Down

0 comments on commit 8f7683f

Please sign in to comment.