Skip to content

Commit

Permalink
chore(deps): Lock file maintenance (#1072)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Adam Skoufis <[email protected]>
  • Loading branch information
renovate[bot] and askoufis authored Nov 15, 2024
1 parent 1d0b11a commit 38c74d1
Show file tree
Hide file tree
Showing 5 changed files with 5,439 additions and 5,859 deletions.
14 changes: 11 additions & 3 deletions fixtures/storybook-config/dev-middleware.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
module.exports = (app) => {
app.get('/test-middleware', (_, res) => {
res.status(200).send('OK');
});
app.get(
'/test-middleware',
/**
* @param {unknown} _
* @param {import('node:http').ServerResponse} res
*/
(_, res) => {
res.statusCode = 200;
res.end('OK');
},
);
};
Loading

0 comments on commit 38c74d1

Please sign in to comment.