From 8f7683f02015b02340d501fca9cb8ff0ea4199c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radim=20Vacul=C3=ADk?= Date: Fri, 9 Jul 2021 08:53:18 +0200 Subject: [PATCH] Typo @ README.md (#807) Add missing bracket. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0f9343d..c6d58ad4 100644 --- a/README.md +++ b/README.md @@ -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: