-
Notifications
You must be signed in to change notification settings - Fork 18
/
gulpfile.js
28 lines (24 loc) · 910 Bytes
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* * * * * ==============================
* * * * * ==============================
* * * * * ==============================
* * * * * ==============================
========================================
========================================
========================================
----------------------------------------
USWDS SASS GULPFILE
----------------------------------------
*/
const uswds = require("@uswds/compile");
uswds.settings.version = 3;
uswds.paths.src.projectSass = "./_scss";
uswds.paths.dist.css = "./assets/uswds/css";
uswds.paths.dist.img = "./assets/uswds/img";
uswds.paths.dist.theme = "./_scss";
// updateUswds will copyAssets and compile, use copyAssets and compile for just those tasks
exports.updateUswds = uswds.updateUswds;
exports.copyAssets = uswds.copyAssets;
exports.compileSass = uswds.compileSass;
exports.compile = uswds.compile;
exports.watch = uswds.watch;