This commit is contained in:
Norbert de Langen 2018-11-26 17:01:28 +01:00
parent 05418b2595
commit b198e08271
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
3 changed files with 9 additions and 16 deletions

View File

@ -137,7 +137,7 @@ To install type definitions: `npm install -D @types/storybook__addon-options`
Make sure you also have the type definitions installed for the following libs: Make sure you also have the type definitions installed for the following libs:
- node - node
- react - react
You can install them using `npm install -D @types/node @types/react`, assuming you are using Typescript >2.0. You can install them using `npm install -D @types/node @types/react`, assuming you are using Typescript >2.0.

View File

@ -127,10 +127,12 @@ export function buildStaticStandalone(options) {
}) })
.catch(p => { .catch(p => {
if (p && p.toJson) { if (p && p.toJson) {
p.toJson().errors.forEach(e => logger.error(e)); const stats = p.toJson();
p.toJson().warnings.forEach(e => logger.error(e));
stats.errors.forEach(e => logger.error(e));
stats.warnings.forEach(e => logger.error(e));
} else { } else {
console.log('THE ERROR', p); logger.error(p);
} }
}); });
} }

View File

@ -15,14 +15,6 @@ const webpackAsPromised = c =>
}); });
const run = async () => { const run = async () => {
// const out = await webpackAsPromised(
// config({
// entry: {
// react: ['react', 'react-dom'],
// },
// provided: [],
// })
// );
const out2 = await webpackAsPromised( const out2 = await webpackAsPromised(
config({ config({
entry: { entry: {
@ -42,20 +34,19 @@ const run = async () => {
resolveLocal('../dist/index.js'), resolveLocal('../dist/index.js'),
], ],
}, },
// provided: ['react', 'react-dom'],
}) })
); );
return out2; return out2;
}; };
// storybook_ui: [resolveLocal('../dist/index.js')],
run().then( run().then(
s => { s => {
// eslint-disable-next-line no-console
console.log('success: ', s.toString()); console.log('success: ', s.toString());
process.exitCode = 0; process.exitCode = 0;
}, },
s => { s => {
// eslint-disable-next-line no-console
console.error('failed: ', s.toString()); console.error('failed: ', s.toString());
process.exitCode = 1; process.exitCode = 1;
} }