Skip to content

Commit 85cc000

Browse files
committed
Fix build and update build matrix
1 parent a12e663 commit 85cc000

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
node-version:
1010
- 14.x
1111
- 18.x
12+
- 19.x
1213
steps:
1314
- uses: actions/checkout@v3
1415
- uses: actions/setup-node@v3

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010

1111
function faucetCSS(config, assetManager, { browsers, compact, sourcemaps } = {}) {
1212
let bundlers = config.map(bundleConfig => makeBundler(bundleConfig,
13-
assetManager, { browsers, compact, sourcemaps }));
13+
assetManager, { browsers, compact, sourcemaps }));
1414

1515
return filepaths => Promise.all(bundlers.
1616
map(bundler => bundler(filepaths)));

0 commit comments

Comments
 (0)