chore: update all npm dependencies (#4486)

Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
Co-authored-by: Anshuman Pandey <54475686+pandeymangg@users.noreply.github.com>
This commit is contained in:
Piyush Gupta
2024-12-18 15:32:43 +05:30
committed by GitHub
parent 8936ce928f
commit 36bf445370
33 changed files with 5133 additions and 5934 deletions

View File

@@ -1,5 +1,4 @@
/* eslint-disable no-constant-condition -- Required for the while loop */
/* eslint-disable @typescript-eslint/no-unnecessary-condition -- Required for a while loop here */
import { createId } from "@paralleldrive/cuid2";
import { Prisma } from "@prisma/client";

View File

@@ -1,9 +1,6 @@
/* eslint-disable @typescript-eslint/no-unsafe-call -- required for any type */
/* eslint-disable @typescript-eslint/no-unsafe-assignment -- required for any type */
/* eslint-disable @typescript-eslint/no-unsafe-member-access -- required for any type */
/* eslint-disable @typescript-eslint/no-explicit-any -- required for any type */
import type { MigrationScript } from "../../src/scripts/migration-runner";

View File

@@ -25,19 +25,19 @@
"create-migration": "dotenv -e ../../.env -- tsx ./src/scripts/create-migration.ts"
},
"dependencies": {
"@prisma/client": "5.20.0",
"@prisma/client": "6.0.1",
"@prisma/extension-accelerate": "1.2.1",
"dotenv-cli": "7.4.2"
"dotenv-cli": "7.4.4"
},
"devDependencies": {
"@formbricks/config-typescript": "workspace:*",
"@formbricks/eslint-config": "workspace:*",
"@paralleldrive/cuid2": "2.2.2",
"prisma": "5.20.0",
"prisma": "6.0.1",
"prisma-dbml-generator": "0.12.0",
"prisma-json-types-generator": "3.1.1",
"ts-node": "10.9.2",
"zod": "3.23.8",
"zod": "3.24.1",
"zod-prisma": "0.5.4"
}
}

View File

@@ -70,7 +70,9 @@ function promptForMigrationName(): Promise<string> {
process.exit(1);
}
if (/[^a-zA-Z0-9\s]/.test(name)) {
console.error("Migration name contains invalid characters. Only letters, numbers, and spaces are allowed.");
console.error(
"Migration name contains invalid characters. Only letters, numbers, and spaces are allowed."
);
process.exit(1);
}
rl.close();