mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:01:07 +08:00
CLEANUP
This commit is contained in:
parent
05418b2595
commit
b198e08271
@ -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.
|
||||
|
@ -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);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user