Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
changes from running pnpm format
There was a problem hiding this comment.
changes from running pnpm format
There was a problem hiding this comment.
changes from running pnpm format
| if (!str) return null; | ||
| return read(cookie.parse(str).sid); | ||
| const sid = cookie.parse(str).sid; | ||
| if (!sid) return null; |
There was a problem hiding this comment.
sid is now string | undefined in cookies@^1.0.0
| export async function GET({ request, url }) { | ||
| const cookies = cookie.parse(request.headers.get('cookie') || ''); | ||
| await session.destroy(cookies.sid); | ||
| if (cookies.sid) { |
There was a problem hiding this comment.
sid is now string | undefined in cookies@^1.0.0
There was a problem hiding this comment.
changes from running pnpm format
There was a problem hiding this comment.
changes from running pnpm format
There was a problem hiding this comment.
changes from running pnpm format
There was a problem hiding this comment.
changes from running pnpm format
There was a problem hiding this comment.
changes from running pnpm format
There was a problem hiding this comment.
changes from running pnpm format
There was a problem hiding this comment.
changes from running pnpm format
| return await tailwindcss.compile(tailwind_base, { | ||
| loadStylesheet: async (id, base) => { | ||
| return { content: tailwind_files[id], base }; | ||
| return { content: tailwind_files[id], base, path: '' }; |
There was a problem hiding this comment.
path is now a required key by tailwind. Not sure what we should put here...
oh yikes... looks like vertical is equivalent to rows and columns is horizontal rather than the other way round EDIT: fixed! |
Requires merging #1815 first so that the titles are correctly slugified. The new version of marked returns ' as a html entity which incorrectly gets removed by our util
This PR bumps a bunch of deps. But most notably:
Wondering if I should split each dep upgrade into its own PR so that it's easier to review
Before submitting the PR, please make sure you do the following
feat:,fix:,chore:, ordocs:.