1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Fix glob.js

Amends 8dec2c69fe

Fixed:
- Forgot to rename all occurrences of 'modules' with 'candidates'.
This commit is contained in:
Chauncey McAskill
2021-12-03 15:10:21 -05:00
parent 5dd3fa843f
commit 47007cddaf

View File

@@ -63,7 +63,7 @@ async function importGlob() {
} }
throw new TypeError( throw new TypeError(
`No glob library was found, expected one of: ${modules.join(', ')}` `No glob library was found, expected one of: ${candidates.join(', ')}`
); );
} }