1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-15 10:05:40 +02:00

build/build-plugins.js: add missing catch (#30722)

This commit is contained in:
XhmikosR
2020-05-04 19:54:49 +03:00
committed by GitHub
parent 727e09b641
commit 89822cfa05

View File

@@ -179,6 +179,7 @@ function build(plugin) {
.then(() => console.log(`Building ${plugin} plugin... Done!`)) .then(() => console.log(`Building ${plugin} plugin... Done!`))
.catch(error => console.error(`${plugin}: ${error}`)) .catch(error => console.error(`${plugin}: ${error}`))
}) })
.catch(error => console.error(`${plugin}: ${error}`))
} }
Object.keys(bsPlugins) Object.keys(bsPlugins)