Skip to content

Commit c233543

Browse files
committed
fix: fix gulpfile.js
1 parent 76bca5c commit c233543

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ function watch_files(done) {
124124
gulp.watch(watch_paths.docs_static, { usePolling: true }).on('change', browserReload);
125125
}
126126

127-
exports.docs_sass = docs_sass();
128-
exports.docs_dart_sass = docs_dart_sass();
129-
exports.lint = lint_sass();
127+
exports.docs_sass = docs_sass;
128+
exports.docs_dart_sass = docs_dart_sass;
129+
exports.lint = lint_sass;
130130
exports.serve = gulp.series(browser_sync, watch_files);
131131
exports.default = gulp.series(lint_sass, docs_sass, docs_dart_sass);

0 commit comments

Comments
 (0)