Skip to content

Commit

Permalink
1.0.112
Browse files Browse the repository at this point in the history
  • Loading branch information
OrJDev committed Dec 21, 2022
1 parent 3bbfe1c commit 2cc871c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-jd-app",
"version": "1.0.106",
"version": "1.0.112",
"main": "dist/index.js",
"scripts": {
"test": "ts-node -r tsconfig-paths/register src",
Expand Down
2 changes: 1 addition & 1 deletion src/installers/NextAuth/files/prisma-handler.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { serverEnv } from "~/env/server";
import { prisma } from "~/server/db/client";

export const authOpts: SolidAuthConfig = {
// @eslint-disable-next-line @typescript-eslint/no-explicit-any
// eslint-disable-next-line @typescript-eslint/no-explicit-any
adapter: PrismaAdapter(prisma) as any,
providers: [
Github({
Expand Down
2 changes: 1 addition & 1 deletion src/installers/SolidAuth/files/prisma-server.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const sessionStorage = createCookieSessionStorage({
sameSite: "lax",
path: "/",
secrets: [serverEnv.SESSION_SECRET],
secure: true,
secure: false,
maxAge: 60 * 60 * 24 * 30,
httpOnly: true,
},
Expand Down
2 changes: 1 addition & 1 deletion src/installers/SolidAuth/files/server.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const sessionStorage = createCookieSessionStorage({
sameSite: "lax",
path: "/",
secrets: [serverEnv.SESSION_SECRET],
secure: true,
secure: false,
maxAge: 60 * 60 * 24 * 30,
httpOnly: true,
},
Expand Down
6 changes: 3 additions & 3 deletions template/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"eslint-plugin-solid": "^0.8.0"
},
"dependencies": {
"@solidjs/meta": "^0.28.0",
"@solidjs/router": "^0.5.0",
"@solidjs/meta": "^0.28.2",
"@solidjs/router": "^0.6.0",
"solid-js": "^1.5.7",
"solid-start": "^0.2.1",
"solid-start": "^0.2.8",
"undici": "5.11.0",
"zod": "^3.19.1",
"dotenv": "^16.0.3"
Expand Down

0 comments on commit 2cc871c

Please sign in to comment.