From b4b72e4b65555c124c3d272c4c9062b350adee9b Mon Sep 17 00:00:00 2001 From: igorkorenfeld Date: Wed, 14 Sep 2022 13:03:11 -0400 Subject: [PATCH] Define default for the gulpfile --- src/gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gulpfile.js b/src/gulpfile.js index e55705b22..2996a5dab 100644 --- a/src/gulpfile.js +++ b/src/gulpfile.js @@ -28,6 +28,7 @@ uswds.paths.dist.img = ASSETS_DIR + 'img'; * Add as many as you need */ +exports.default = uswds.compile; exports.init = uswds.init; exports.compile = uswds.compile; exports.watch = uswds.watch;