Releases: styleguidist/react-styleguidist
Releases · styleguidist/react-styleguidist
v4.5.3
v4.5.2
v4.5.1
v4.5.0
New features
Support custom configuration to the Express server (#273 by @cef62):
module.exports = {
// ...
configureServer(app) {
// `app` is the instance of the express server running react-styleguidist
app.get('/custom-endpoint', (req, res) => {
res.status(200).send({ response: 'Server invoked' });
});
},
};
v4.4.3
v4.4.2
v4.4.1
v4.4.0
New feature
Now style guide should hot reload when you add new components.
New config option , by default will watch common root folder for all your components.
(#242 by @aaronjensen)