fix missing supported extension check in case when asset is a string

I've came across this inconsistent logic while investigating my own issue: https://github.com/storybooks/storybook/issues/2363
This commit is contained in:
folmert 2017-12-12 16:32:05 +01:00 committed by GitHub
parent e6a776be0a
commit 83b0798e32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,9 @@ const urlsFromAssets = assets => {
.forEach(key => {
let asset = assets[key];
if (typeof asset === 'string') {
urls[getExtensionForFilename(asset)].push(asset);
if (Boolean(urls[getExtensionForFilename(asset)])) {
urls[getExtensionForFilename(asset)].push(asset);
}
} else {
if (!Array.isArray(asset)) {
asset = [asset];