Skip to content

Commit

Permalink
fix: replace missing globby.sync with fg.sync in build:component-inve…
Browse files Browse the repository at this point in the history
…ntory
  • Loading branch information
hunterloftis authored and Westbrook committed Jan 7, 2022
1 parent 9ec9529 commit d180658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/build-component-inventory.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async function getCSSComponents() {

async function getWebComponents() {
const directoryRE = /(?:\/)([^\/]+)(?=\/src)\//;
const paths = globby.sync(ConfigPath);
const paths = fg.sync(ConfigPath);
const componentPromises = paths.map(async (path) => {
const config = await import(pathToFileURL(path));
const component = config.default.spectrum;
Expand Down

0 comments on commit d180658

Please sign in to comment.