fix: local docker image build (#4758)

Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
This commit is contained in:
Anshuman Pandey
2025-02-28 16:23:23 +05:30
committed by GitHub
parent e3084760b8
commit fa7d33351f
12 changed files with 150 additions and 93 deletions

View File

@@ -1,39 +1,56 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies # dependencies
# **/node_modules **/node_modules
.pnp .pnp
.pnp.js .pnp.js
.pnpm-store/ .pnpm-store/
# testing # testing
coverage **/coverage
# next.js # next.js
**/.next **/.next/
**/out **/out/
**/build **/build
# node # node
**/dist **/dist/
# misc # misc
.DS_Store **/.DS_Store
*.pem *.pem
Zone.Identifier
# debug # debug
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
# turbo # local env files
.turbo **/.env
**/.env.local
**/.env.development.local
**/.env.test.local
**/.env.production.local
!packages/database/.env
!apps/web/.env
# nixos stuff # build tools
.turbo
**/*vite.config.*.timestamp-*
# environment specific
.direnv .direnv
.vscode # Playwright
.github /test-results/
**/.turbo /playwright-report/
/blob-report/
/playwright/.cache/
.env # project specific
packages/lib/uploads
apps/web/public/js
packages/database/migrations
branch.json

43
.gitignore vendored
View File

@@ -1,25 +1,26 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies # dependencies
node_modules **/node_modules
.pnp .pnp
.pnp.js .pnp.js
.pnpm-store/ .pnpm-store/
# testing # testing
coverage **/coverage
# next.js # next.js
.next/ **/.next/
out/ **/out/
build **/build
# node # node
dist/ **/dist/
# misc # misc
.DS_Store **/.DS_Store
*.pem *.pem
Zone.Identifier
# debug # debug
npm-debug.log* npm-debug.log*
@@ -27,39 +28,29 @@ yarn-debug.log*
yarn-error.log* yarn-error.log*
# local env files # local env files
.env **/.env
.env.local **/.env.local
.env.development.local **/.env.development.local
.env.test.local **/.env.test.local
.env.production.local **/.env.production.local
!packages/database/.env !packages/database/.env
!apps/web/.env !apps/web/.env
# turbo # build tools
.turbo .turbo
**/*vite.config.*.timestamp-*
# nixos stuff # environment specific
.direnv .direnv
Zone.Identifier
# Playwright # Playwright
/test-results/ /test-results/
/playwright-report/ /playwright-report/
/blob-report/ /blob-report/
/playwright/.cache/ /playwright/.cache/
# uploads # project specific
packages/lib/uploads packages/lib/uploads
# Vite Timestamps
*vite.config.*.timestamp-*
# js compiled assets
apps/web/public/js apps/web/public/js
packages/database/migrations packages/database/migrations
# tolgee
branch.json branch.json

View File

@@ -33,6 +33,9 @@ ENV CRON_SECRET="placeholder_for_cron_secret_of_64_chars_get_overwritten_at_runt
ARG NEXT_PUBLIC_SENTRY_DSN ARG NEXT_PUBLIC_SENTRY_DSN
ARG SENTRY_AUTH_TOKEN ARG SENTRY_AUTH_TOKEN
# Increase Node.js memory limit
# ENV NODE_OPTIONS="--max_old_space_size=4096"
# Set the working directory # Set the working directory
WORKDIR /app WORKDIR /app
@@ -41,19 +44,17 @@ WORKDIR /app
# COPY --from=builder /app/out/json/ . # COPY --from=builder /app/out/json/ .
# COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml # COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml
# Install the dependencies
# RUN pnpm install
# Prepare the build # Prepare the build
COPY . . COPY . .
# Create a .env file # Create a .env file
RUN touch apps/web/.env RUN touch apps/web/.env
# Install the dependencies
RUN pnpm install RUN pnpm install
# Build the project # Build the project
# RUN pnpm post-install --filter=@formbricks/web... RUN NODE_OPTIONS="--max_old_space_size=4096" pnpm build --filter=@formbricks/web...
RUN pnpm build --filter=@formbricks/web...
# Extract Prisma version # Extract Prisma version
RUN jq -r '.devDependencies.prisma' packages/database/package.json > /prisma_version.txt RUN jq -r '.devDependencies.prisma' packages/database/package.json > /prisma_version.txt
@@ -76,6 +77,7 @@ WORKDIR /home/nextjs
COPY --from=installer /app/apps/web/next.config.mjs . COPY --from=installer /app/apps/web/next.config.mjs .
COPY --from=installer /app/apps/web/package.json . COPY --from=installer /app/apps/web/package.json .
# Leverage output traces to reduce image size # Leverage output traces to reduce image size
COPY --from=installer --chown=nextjs:nextjs /app/apps/web/.next/standalone ./ COPY --from=installer --chown=nextjs:nextjs /app/apps/web/.next/standalone ./
COPY --from=installer --chown=nextjs:nextjs /app/apps/web/.next/static ./apps/web/.next/static COPY --from=installer --chown=nextjs:nextjs /app/apps/web/.next/static ./apps/web/.next/static
COPY --from=installer --chown=nextjs:nextjs /app/apps/web/public ./apps/web/public COPY --from=installer --chown=nextjs:nextjs /app/apps/web/public ./apps/web/public

View File

@@ -33,8 +33,8 @@
"@paralleldrive/cuid2": "2.2.2", "@paralleldrive/cuid2": "2.2.2",
"prisma": "6.0.1", "prisma": "6.0.1",
"prisma-dbml-generator": "0.12.0", "prisma-dbml-generator": "0.12.0",
"prisma-json-types-generator": "3.1.1",
"ts-node": "10.9.2", "ts-node": "10.9.2",
"zod": "3.24.1" "zod": "3.24.1",
"prisma-json-types-generator": "3.2.2"
} }
} }

View File

@@ -28,7 +28,11 @@ const config = () => {
rollupTypes: true, rollupTypes: true,
bundledPackages: ["@formbricks/api", "@formbricks/types"], bundledPackages: ["@formbricks/api", "@formbricks/types"],
}), }),
copyCompiledAssetsPlugin({ filename: "formbricks", distDir: resolve(__dirname, "dist") }), copyCompiledAssetsPlugin({
filename: "formbricks",
distDir: resolve(__dirname, "dist"),
skipDirectoryCheck: true, // Skip checking for subdirectories that might not exist
}),
], ],
}); });
}; };

View File

@@ -6,6 +6,7 @@
"continue_with_google": "Login mit Google", "continue_with_google": "Login mit Google",
"continue_with_oidc": "Weiter mit {oidcDisplayName}", "continue_with_oidc": "Weiter mit {oidcDisplayName}",
"continue_with_openid": "Login mit OpenID", "continue_with_openid": "Login mit OpenID",
"continue_with_saml": "Login mit SAML SSO",
"forgot-password": { "forgot-password": {
"back_to_login": "Zurück zum Login", "back_to_login": "Zurück zum Login",
"email-sent": { "email-sent": {
@@ -52,6 +53,7 @@
"new_to_formbricks": "Neu bei Formbricks?", "new_to_formbricks": "Neu bei Formbricks?",
"use_a_backup_code": "Einen Backup-Code verwenden" "use_a_backup_code": "Einen Backup-Code verwenden"
}, },
"saml_connection_error": "Etwas ist schiefgelaufen. Bitte überprüfe die App-Konsole für weitere Details.",
"signup": { "signup": {
"captcha_failed": "reCAPTCHA fehlgeschlagen", "captcha_failed": "reCAPTCHA fehlgeschlagen",
"have_an_account": "Hast Du ein Konto?", "have_an_account": "Hast Du ein Konto?",

View File

@@ -6,6 +6,7 @@
"continue_with_google": "Continue with Google", "continue_with_google": "Continue with Google",
"continue_with_oidc": "Continue with {oidcDisplayName}", "continue_with_oidc": "Continue with {oidcDisplayName}",
"continue_with_openid": "Continue with OpenID", "continue_with_openid": "Continue with OpenID",
"continue_with_saml": "Continue with SAML SSO",
"forgot-password": { "forgot-password": {
"back_to_login": "Back to login", "back_to_login": "Back to login",
"email-sent": { "email-sent": {
@@ -52,6 +53,7 @@
"new_to_formbricks": "New to Formbricks?", "new_to_formbricks": "New to Formbricks?",
"use_a_backup_code": "Use a backup code" "use_a_backup_code": "Use a backup code"
}, },
"saml_connection_error": "Something went wrong. Please check your app console for more details.",
"signup": { "signup": {
"captcha_failed": "Captcha failed", "captcha_failed": "Captcha failed",
"have_an_account": "Have an account?", "have_an_account": "Have an account?",

View File

@@ -6,6 +6,7 @@
"continue_with_google": "Continuer avec Google", "continue_with_google": "Continuer avec Google",
"continue_with_oidc": "Continuer avec {oidcDisplayName}", "continue_with_oidc": "Continuer avec {oidcDisplayName}",
"continue_with_openid": "Continuer avec OpenID", "continue_with_openid": "Continuer avec OpenID",
"continue_with_saml": "Continuer avec SAML SSO",
"forgot-password": { "forgot-password": {
"back_to_login": "Retour à la connexion", "back_to_login": "Retour à la connexion",
"email-sent": { "email-sent": {
@@ -52,6 +53,7 @@
"new_to_formbricks": "Nouveau sur Formbricks ?", "new_to_formbricks": "Nouveau sur Formbricks ?",
"use_a_backup_code": "Utiliser un code de secours" "use_a_backup_code": "Utiliser un code de secours"
}, },
"saml_connection_error": "Quelque chose s'est mal passé. Veuillez vérifier la console de votre application pour plus de détails.",
"signup": { "signup": {
"captcha_failed": "Captcha échoué", "captcha_failed": "Captcha échoué",
"have_an_account": "Avez-vous un compte ?", "have_an_account": "Avez-vous un compte ?",

View File

@@ -6,6 +6,7 @@
"continue_with_google": "Continuar com o Google", "continue_with_google": "Continuar com o Google",
"continue_with_oidc": "Continuar com {oidcDisplayName}", "continue_with_oidc": "Continuar com {oidcDisplayName}",
"continue_with_openid": "Continuar com OpenID", "continue_with_openid": "Continuar com OpenID",
"continue_with_saml": "Continuar com SAML SSO",
"forgot-password": { "forgot-password": {
"back_to_login": "Voltar para o login", "back_to_login": "Voltar para o login",
"email-sent": { "email-sent": {
@@ -52,6 +53,7 @@
"new_to_formbricks": "Novo no Formbricks?", "new_to_formbricks": "Novo no Formbricks?",
"use_a_backup_code": "Usar um código de backup" "use_a_backup_code": "Usar um código de backup"
}, },
"saml_connection_error": "Algo deu errado. Por favor, verifica o console do app para mais detalhes.",
"signup": { "signup": {
"captcha_failed": "reCAPTCHA falhou", "captcha_failed": "reCAPTCHA falhou",
"have_an_account": "Já tem uma conta?", "have_an_account": "Já tem uma conta?",

View File

@@ -6,6 +6,7 @@
"continue_with_google": "使用 Google 繼續", "continue_with_google": "使用 Google 繼續",
"continue_with_oidc": "使用 '{'oidcDisplayName'}' 繼續", "continue_with_oidc": "使用 '{'oidcDisplayName'}' 繼續",
"continue_with_openid": "使用 OpenID 繼續", "continue_with_openid": "使用 OpenID 繼續",
"continue_with_saml": "使用 SAML SSO 繼續",
"forgot-password": { "forgot-password": {
"back_to_login": "返回登入", "back_to_login": "返回登入",
"email-sent": { "email-sent": {
@@ -52,6 +53,7 @@
"new_to_formbricks": "初次使用 Formbricks", "new_to_formbricks": "初次使用 Formbricks",
"use_a_backup_code": "使用備份碼" "use_a_backup_code": "使用備份碼"
}, },
"saml_connection_error": "發生錯誤。請檢查您的 app 主控台以取得更多詳細資料。",
"signup": { "signup": {
"captcha_failed": "驗證碼失敗", "captcha_failed": "驗證碼失敗",
"have_an_account": "已有帳戶?", "have_an_account": "已有帳戶?",

View File

@@ -6,6 +6,7 @@ import { type Plugin, type ResolvedConfig } from "vite";
interface CopyCompiledAssetsPluginOptions { interface CopyCompiledAssetsPluginOptions {
filename: string; filename: string;
distDir: string; distDir: string;
skipDirectoryCheck?: boolean; // New option to skip checking non-existent directories
} }
const ensureDirectoryExists = async (dirPath: string): Promise<void> => { const ensureDirectoryExists = async (dirPath: string): Promise<void> => {
@@ -32,30 +33,67 @@ export function copyCompiledAssetsPlugin(options: CopyCompiledAssetsPluginOption
}, },
async writeBundle() { async writeBundle() {
const outputDir = path.resolve(config.root, "../../apps/web/public/js"); try {
const distDir = path.resolve(config.root, options.distDir); const outputDir = path.resolve(config.root, "../../apps/web/public/js");
const distDir = path.resolve(config.root, options.distDir);
// Create the output directory if it doesn't exist // Create the output directory if it doesn't exist
// fs.ensureDirSync(outputDir); await ensureDirectoryExists(outputDir);
await ensureDirectoryExists(outputDir); console.log(`Ensured directory exists: ${outputDir}`);
console.log(`Ensured directory exists: ${outputDir}`);
// Copy files from distDir to outputDir // Check if the dist directory exists
const filesToCopy = await readdir(distDir); try {
await access(distDir);
for (const file of filesToCopy) { } catch (error) {
const srcFile = path.resolve(distDir, file); if ((error as { code: string }).code === "ENOENT") {
const destFile = path.resolve(outputDir, file.replace("index", options.filename)); console.error(`Error: Distribution directory ${distDir} does not exist`);
// Check if the srcFile is a regular file before copying if (!options.skipDirectoryCheck) {
const fileStat = await stat(srcFile); throw error;
if (!fileStat.isFile()) { } else {
continue; // Skip directories, or other non-regular files console.log(`Skipping directory check as skipDirectoryCheck is enabled`);
return; // Skip further processing
}
} else {
throw error;
}
} }
await copyFile(srcFile, destFile); // Copy files from distDir to outputDir
} const filesToCopy = await readdir(distDir);
let copiedFiles = 0;
console.log(`Copied ${filesToCopy.length.toString()} files to ${outputDir} (${options.filename})`); for (const file of filesToCopy) {
const srcFile = path.resolve(distDir, file);
const destFile = path.resolve(outputDir, file.replace("index", options.filename));
try {
// Check if the srcFile is a regular file before copying
const fileStat = await stat(srcFile);
if (!fileStat.isFile()) {
continue; // Skip directories, or other non-regular files
}
await copyFile(srcFile, destFile);
copiedFiles++;
} catch (error) {
if ((error as { code: string }).code === "ENOENT" && options.skipDirectoryCheck) {
console.log(`Skipping non-existent file: ${srcFile}`);
continue;
}
throw error;
}
}
console.log(`Copied ${String(copiedFiles)} files to ${outputDir} (${options.filename})`);
} catch (error) {
if (options.skipDirectoryCheck) {
console.error(
`Warning: Error during copy operation, but continuing due to skipDirectoryCheck: ${String(error)}`
);
} else {
throw error;
}
}
}, },
}; };
} }

49
pnpm-lock.yaml generated
View File

@@ -678,8 +678,8 @@ importers:
specifier: 0.12.0 specifier: 0.12.0
version: 0.12.0(encoding@0.1.13) version: 0.12.0(encoding@0.1.13)
prisma-json-types-generator: prisma-json-types-generator:
specifier: 3.1.1 specifier: 3.2.2
version: 3.1.1(prisma@6.0.1)(typescript@5.7.2) version: 3.2.2(prisma@6.0.1)(typescript@5.7.2)
ts-node: ts-node:
specifier: 10.9.2 specifier: 10.9.2
version: 10.9.2(@types/node@22.10.2)(typescript@5.7.2) version: 10.9.2(@types/node@22.10.2)(typescript@5.7.2)
@@ -3654,8 +3654,8 @@ packages:
'@prisma/debug@5.0.0': '@prisma/debug@5.0.0':
resolution: {integrity: sha512-3q/M/KqlQ01/HJXifU/zCNOHkoTWu24kGelMF/IBrRxm7njPqTTbwfnT1dh4JK+nuWM5/Dg1Lv00u2c0l7AHxg==} resolution: {integrity: sha512-3q/M/KqlQ01/HJXifU/zCNOHkoTWu24kGelMF/IBrRxm7njPqTTbwfnT1dh4JK+nuWM5/Dg1Lv00u2c0l7AHxg==}
'@prisma/debug@5.20.0': '@prisma/debug@6.0.0':
resolution: {integrity: sha512-oCx79MJ4HSujokA8S1g0xgZUGybD4SyIOydoHMngFYiwEwYDQ5tBQkK5XoEHuwOYDKUOKRn/J0MEymckc4IgsQ==} resolution: {integrity: sha512-eUjoNThlDXdyJ1iQ2d7U6aTVwm59EwvODb5zFVNJEokNoSiQmiYWNzZIwZyDmZ+j51j42/0iTaHIJ4/aZPKFRg==}
'@prisma/debug@6.0.1': '@prisma/debug@6.0.1':
resolution: {integrity: sha512-jQylgSOf7ibTVxqBacnAlVGvek6fQxJIYCQOeX2KexsfypNzXjJQSS2o5s+Mjj2Np93iSOQUaw6TvPj8syhG4w==} resolution: {integrity: sha512-jQylgSOf7ibTVxqBacnAlVGvek6fQxJIYCQOeX2KexsfypNzXjJQSS2o5s+Mjj2Np93iSOQUaw6TvPj8syhG4w==}
@@ -3684,8 +3684,8 @@ packages:
'@prisma/generator-helper@5.0.0': '@prisma/generator-helper@5.0.0':
resolution: {integrity: sha512-pufQ1mhoH6WzKNtzL79HZDoW4Ql3Lf8QEKVmBoW8e3Tdb50bxpYBYue5LBqp9vNW1xd1pgZO53cNiRfLX2d4Zg==} resolution: {integrity: sha512-pufQ1mhoH6WzKNtzL79HZDoW4Ql3Lf8QEKVmBoW8e3Tdb50bxpYBYue5LBqp9vNW1xd1pgZO53cNiRfLX2d4Zg==}
'@prisma/generator-helper@5.20.0': '@prisma/generator-helper@6.0.0':
resolution: {integrity: sha512-37Aibw0wVRQgQVtCdNAIN71YFnSQfvetok7vd95KKkYkQRbEx94gsvPDpyN9Mw7p3IwA3nFgPfLc3jBRztUkKw==} resolution: {integrity: sha512-5DkG7hspZo6U4OtqI2W0JcgtY37sr7HgT8Q0W/sjL4VoV4px6ivzK6Eif5bKM7q+S4yFUHtjUt/3s69ErfLn7A==}
'@prisma/get-platform@5.0.0': '@prisma/get-platform@5.0.0':
resolution: {integrity: sha512-JT/rz/jaMTggDkd9OIma50si9rPLzSFe7XSrV3mKXwtv9t+rdwx5ZhmKJd+Rz6S1vhn/291k21JLfaxOW6u8KQ==} resolution: {integrity: sha512-JT/rz/jaMTggDkd9OIma50si9rPLzSFe7XSrV3mKXwtv9t+rdwx5ZhmKJd+Rz6S1vhn/291k21JLfaxOW6u8KQ==}
@@ -10730,12 +10730,12 @@ packages:
resolution: {integrity: sha512-b5CqA9cCY5jmNJGjx8oUbPw3KSgVd+mu8711MSZIRY9dIF0Vlcs/Au6LR3S5guncydM7Zkh8iz8vC+c2CDj3Xw==} resolution: {integrity: sha512-b5CqA9cCY5jmNJGjx8oUbPw3KSgVd+mu8711MSZIRY9dIF0Vlcs/Au6LR3S5guncydM7Zkh8iz8vC+c2CDj3Xw==}
hasBin: true hasBin: true
prisma-json-types-generator@3.1.1: prisma-json-types-generator@3.2.2:
resolution: {integrity: sha512-LYVBKWcnh6SSPf6jNJuQEmByyZtj79kuxzilCF8962ViBNciBzk+pQ8qt7HR7lFUIOEN3sUeOOhJe1RuytGk6A==} resolution: {integrity: sha512-kvEbJPIP5gxk65KmLs0nAvY+CxpqVMWb4OsEvXlyXZmp2IGfi5f52BUV7ezTYQNjRPZyR4QlayWJXffoqVVAfA==}
engines: {node: '>=14.0'} engines: {node: '>=14.0'}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
prisma: ^5.20 prisma: ^5 || ^6
typescript: ^5.6.2 typescript: ^5.6.2
prisma@6.0.1: prisma@6.0.1:
@@ -12134,9 +12134,6 @@ packages:
tslib@1.14.1: tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
tslib@2.7.0:
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
tslib@2.8.1: tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
@@ -16448,7 +16445,7 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@prisma/debug@5.20.0': {} '@prisma/debug@6.0.0': {}
'@prisma/debug@6.0.1': {} '@prisma/debug@6.0.1': {}
@@ -16505,9 +16502,9 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
'@prisma/generator-helper@5.20.0': '@prisma/generator-helper@6.0.0':
dependencies: dependencies:
'@prisma/debug': 5.20.0 '@prisma/debug': 6.0.0
'@prisma/get-platform@5.0.0': '@prisma/get-platform@5.0.0':
dependencies: dependencies:
@@ -17419,7 +17416,7 @@ snapshots:
'@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.0) '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.0)
'@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
'@babel/template': 7.25.9 '@babel/template': 7.26.9
'@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.26.7(@babel/core@7.26.0)) '@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.26.7(@babel/core@7.26.0))
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0) babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0)
react-refresh: 0.14.2 react-refresh: 0.14.2
@@ -19496,7 +19493,7 @@ snapshots:
'@vue/compiler-core@3.5.13': '@vue/compiler-core@3.5.13':
dependencies: dependencies:
'@babel/parser': 7.26.7 '@babel/parser': 7.26.9
'@vue/shared': 3.5.13 '@vue/shared': 3.5.13
entities: 4.5.0 entities: 4.5.0
estree-walker: 2.0.2 estree-walker: 2.0.2
@@ -23894,8 +23891,8 @@ snapshots:
metro-transform-plugins@0.80.12: metro-transform-plugins@0.80.12:
dependencies: dependencies:
'@babel/core': 7.26.0 '@babel/core': 7.26.0
'@babel/generator': 7.26.5 '@babel/generator': 7.26.9
'@babel/template': 7.25.9 '@babel/template': 7.26.9
'@babel/traverse': 7.26.7 '@babel/traverse': 7.26.7
flow-enums-runtime: 0.0.6 flow-enums-runtime: 0.0.6
nullthrows: 1.1.1 nullthrows: 1.1.1
@@ -23916,9 +23913,9 @@ snapshots:
metro-transform-worker@0.80.12: metro-transform-worker@0.80.12:
dependencies: dependencies:
'@babel/core': 7.26.0 '@babel/core': 7.26.0
'@babel/generator': 7.26.5 '@babel/generator': 7.26.9
'@babel/parser': 7.26.7 '@babel/parser': 7.26.9
'@babel/types': 7.26.7 '@babel/types': 7.26.9
flow-enums-runtime: 0.0.6 flow-enums-runtime: 0.0.6
metro: 0.80.12 metro: 0.80.12
metro-babel-transformer: 0.80.12 metro-babel-transformer: 0.80.12
@@ -25141,11 +25138,11 @@ snapshots:
- encoding - encoding
- supports-color - supports-color
prisma-json-types-generator@3.1.1(prisma@6.0.1)(typescript@5.7.2): prisma-json-types-generator@3.2.2(prisma@6.0.1)(typescript@5.7.2):
dependencies: dependencies:
'@prisma/generator-helper': 5.20.0 '@prisma/generator-helper': 6.0.0
prisma: 6.0.1 prisma: 6.0.1
tslib: 2.7.0 tslib: 2.8.1
typescript: 5.7.2 typescript: 5.7.2
prisma@6.0.1: prisma@6.0.1:
@@ -26843,8 +26840,6 @@ snapshots:
tslib@1.14.1: {} tslib@1.14.1: {}
tslib@2.7.0: {}
tslib@2.8.1: {} tslib@2.8.1: {}
tsup@8.3.5(@microsoft/api-extractor@7.49.1(@types/node@22.10.2))(jiti@2.4.1)(postcss@8.5.2)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.7.0): tsup@8.3.5(@microsoft/api-extractor@7.49.1(@types/node@22.10.2))(jiti@2.4.1)(postcss@8.5.2)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.7.0):