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:
- node
- react
- node
- react
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 => {
if (p && p.toJson) {
p.toJson().errors.forEach(e => logger.error(e));
p.toJson().warnings.forEach(e => logger.error(e));
const stats = p.toJson();
stats.errors.forEach(e => logger.error(e));
stats.warnings.forEach(e => logger.error(e));
} else {
console.log('THE ERROR', p);
logger.error(p);
}
});
}

View File

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