mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +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:
|
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.
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user