v0.49.1 including Codemods (#28)
This commit is contained in:
BIN
api/db/dev.db-journal
Normal file
BIN
api/db/dev.db-journal
Normal file
Binary file not shown.
@@ -3,7 +3,7 @@
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@redwoodjs/api": "0.45.0",
|
||||
"@redwoodjs/graphql-server": "0.45.0"
|
||||
"@redwoodjs/api": "0.49.1",
|
||||
"@redwoodjs/graphql-server": "0.49.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -143,6 +143,14 @@ export const handler = async (event, context) => {
|
||||
login: loginOptions,
|
||||
resetPassword: resetPasswordOptions,
|
||||
signup: signupOptions,
|
||||
|
||||
cookie: {
|
||||
HttpOnly: true,
|
||||
Path: '/',
|
||||
SameSite: 'Strict',
|
||||
Secure: true,
|
||||
// Domain: 'example.com',
|
||||
},
|
||||
})
|
||||
|
||||
return await authHandler.invoke()
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@redwoodjs/core": "0.45.0"
|
||||
"@redwoodjs/core": "0.49.1"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "@redwoodjs/eslint-config"
|
||||
|
||||
@@ -13,23 +13,22 @@
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"@redwoodjs/auth": "0.44.1",
|
||||
"@redwoodjs/forms": "0.45.0",
|
||||
"@redwoodjs/router": "0.45.0",
|
||||
"@redwoodjs/web": "0.45.0",
|
||||
"netlify-identity-widget": "1.9.2",
|
||||
"@redwoodjs/auth": "0.49.1",
|
||||
"@redwoodjs/forms": "0.49.1",
|
||||
"@redwoodjs/router": "0.49.1",
|
||||
"@redwoodjs/web": "0.49.1",
|
||||
"prop-types": "15.8.1",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/aspect-ratio": "0.4.0",
|
||||
"@tailwindcss/forms": "0.4.0",
|
||||
"@tailwindcss/forms": "0.5.0",
|
||||
"@tailwindcss/line-clamp": "0.3.1",
|
||||
"@tailwindcss/typography": "0.5.1",
|
||||
"@tailwindcss/typography": "0.5.2",
|
||||
"autoprefixer": "10.4.2",
|
||||
"postcss": "8.4.6",
|
||||
"postcss": "8.4.8",
|
||||
"postcss-loader": "6.2.1",
|
||||
"tailwindcss": "3.0.18"
|
||||
"tailwindcss": "3.0.23"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,15 @@
|
||||
// still render a generic error page, but your users will prefer something a bit more
|
||||
// thoughtful. =)
|
||||
|
||||
export default () => (
|
||||
// Ensures that production builds do not include the error page
|
||||
let RedwoodDevFatalErrorPage = undefined
|
||||
if (process.env.NODE_ENV === 'development') {
|
||||
RedwoodDevFatalErrorPage =
|
||||
require('@redwoodjs/web/dist/components/DevFatalErrorPage').DevFatalErrorPage
|
||||
}
|
||||
|
||||
export default RedwoodDevFatalErrorPage ||
|
||||
(() => (
|
||||
<main>
|
||||
<style
|
||||
dangerouslySetInnerHTML={{
|
||||
@@ -50,4 +58,4 @@ export default () => (
|
||||
</h1>
|
||||
</section>
|
||||
</main>
|
||||
)
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user