We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 149b057 commit d340701Copy full SHA for d340701
packages/build-tools/tasks/task-collections.js
@@ -199,8 +199,10 @@ async function build(shouldReturnTime = false) {
199
200
// don't try to process / convert SVG icons if the `@bolt/components-icon` package isn't part of the build
201
if (
202
- config.components.global.includes('@bolt/components-icon') ||
203
- config.components.individual.includes('@bolt/components-icon')
+ (config.components.global &&
+ config.components.global.includes('@bolt/components-icon')) ||
204
+ (config.components.individual &&
205
+ config.components.individual.includes('@bolt/components-icon'))
206
) {
207
await iconTasks.build();
208
}
0 commit comments