From 2c67dae2fafcc1547aae637d0d20bc75e5fcf8d6 Mon Sep 17 00:00:00 2001 From: Dimitry Kudryavtsev Date: Thu, 17 Feb 2022 13:30:27 -0600 Subject: [PATCH] Update import.macro.js Fixing an issue where if, `babelMacros` is not set in `package.json`, then there is an error `"config license must be either 'free' or 'pro'"` because `config = {}`. We need to check for the `license` (`config.license`). --- js-packages/@fortawesome/fontawesome-svg-core/import.macro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js-packages/@fortawesome/fontawesome-svg-core/import.macro.js b/js-packages/@fortawesome/fontawesome-svg-core/import.macro.js index c673bb040..2ca9833c1 100644 --- a/js-packages/@fortawesome/fontawesome-svg-core/import.macro.js +++ b/js-packages/@fortawesome/fontawesome-svg-core/import.macro.js @@ -15,7 +15,7 @@ const styles = [ ] function importer ({references, state, babel, source, config}) { - const license = (config !== undefined ? config.license : 'free') + const license = ((config !== undefined && config.license !== undefined) ? config.license : 'free') if (!['free', 'pro'].includes(license)) { throw new Error(