mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
ensure manager entries load even if preceding ones failed
This commit is contained in:
parent
67a0309a3b
commit
4f1c5cfa98
@ -38,9 +38,20 @@
|
||||
<script type="module">
|
||||
import './sb-manager/runtime.mjs';
|
||||
|
||||
const addons = [
|
||||
<% files.js.forEach(file => { %>
|
||||
import './<%= file %>';
|
||||
'./<%= file %>',
|
||||
<% }); %>
|
||||
];
|
||||
|
||||
/* error handling of manager-addons being broken */
|
||||
const results = await Promise.allSettled(addons.map(addon => import(addon))).then(results => {
|
||||
results.forEach((result, index) => {
|
||||
if(result.status =='rejected'){
|
||||
console.error(`loading ${addons[index]} failed to load correctly`);
|
||||
}
|
||||
})
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
x
Reference in New Issue
Block a user