From a1ea8973a7c8558f09c54f2d7454cbb59692fd45 Mon Sep 17 00:00:00 2001 From: Alejandro Rosales Date: Fri, 5 Dec 2025 08:43:32 -0600 Subject: [PATCH] Add Vercel configuration files and update dependencies --- .vercel/README.txt | 11 +++++++ .vercel/output/builds.json | 36 ++++++++++++++++++++++ .vercel/output/config.json | 3 ++ .vercel/output/diagnostics/cli_traces.json | 1 + .vercel/project.json | 16 ++++++++++ bun.lock | 6 ++-- package-lock.json | 14 +++++---- package.json | 2 +- 8 files changed, 80 insertions(+), 9 deletions(-) create mode 100644 .vercel/README.txt create mode 100644 .vercel/output/builds.json create mode 100644 .vercel/output/config.json create mode 100644 .vercel/output/diagnostics/cli_traces.json create mode 100644 .vercel/project.json diff --git a/.vercel/README.txt b/.vercel/README.txt new file mode 100644 index 0000000..525d8ce --- /dev/null +++ b/.vercel/README.txt @@ -0,0 +1,11 @@ +> Why do I have a folder named ".vercel" in my project? +The ".vercel" folder is created when you link a directory to a Vercel project. + +> What does the "project.json" file contain? +The "project.json" file contains: +- The ID of the Vercel project that you linked ("projectId") +- The ID of the user or team your Vercel project is owned by ("orgId") + +> Should I commit the ".vercel" folder? +No, you should not share the ".vercel" folder with anyone. +Upon creation, it will be automatically added to your ".gitignore" file. diff --git a/.vercel/output/builds.json b/.vercel/output/builds.json new file mode 100644 index 0000000..e496d8b --- /dev/null +++ b/.vercel/output/builds.json @@ -0,0 +1,36 @@ +{ + "//": "This file was generated by the `vercel build` command. It is not part of the Build Output API.", + "target": "preview", + "argv": [ + "C:\\Program Files\\nodejs\\node.exe", + "C:\\Users\\alex\\.bun\\install\\global\\node_modules\\vercel\\dist\\vc.js", + "build" + ], + "builds": [ + { + "require": "@vercel/static-build", + "requirePath": "C:\\Users\\alex\\.bun\\install\\global\\node_modules\\@vercel\\static-build\\dist\\index", + "apiVersion": 2, + "src": "package.json", + "use": "@vercel/static-build", + "config": { + "zeroConfig": true, + "framework": "vite" + }, + "error": { + "name": "Error", + "stack": "Error: Command \"npm run build\" exited with 2\n at ChildProcess. (C:\\Users\\alex\\.bun\\install\\global\\node_modules\\@vercel\\build-utils\\dist\\index.js:23221:9)\n at ChildProcess.emit (node:events:508:28)\n at ChildProcess.emit (node:domain:489:12)\n at cp.emit (C:\\Users\\alex\\.bun\\install\\global\\node_modules\\@vercel\\build-utils\\dist\\index.js:14249:29)\n at maybeClose (node:internal/child_process:1101:16)\n at ChildProcess._handle.onexit (node:internal/child_process:305:5)", + "message": "Command \"npm run build\" exited with 2", + "hideStackTrace": true, + "code": "BUILD_UTILS_SPAWN_2" + } + } + ], + "error": { + "name": "Error", + "stack": "Error: Command \"npm run build\" exited with 2\n at ChildProcess. (C:\\Users\\alex\\.bun\\install\\global\\node_modules\\@vercel\\build-utils\\dist\\index.js:23221:9)\n at ChildProcess.emit (node:events:508:28)\n at ChildProcess.emit (node:domain:489:12)\n at cp.emit (C:\\Users\\alex\\.bun\\install\\global\\node_modules\\@vercel\\build-utils\\dist\\index.js:14249:29)\n at maybeClose (node:internal/child_process:1101:16)\n at ChildProcess._handle.onexit (node:internal/child_process:305:5)", + "message": "Command \"npm run build\" exited with 2", + "hideStackTrace": true, + "code": "BUILD_UTILS_SPAWN_2" + } +} diff --git a/.vercel/output/config.json b/.vercel/output/config.json new file mode 100644 index 0000000..cd2f236 --- /dev/null +++ b/.vercel/output/config.json @@ -0,0 +1,3 @@ +{ + "version": 3 +} diff --git a/.vercel/output/diagnostics/cli_traces.json b/.vercel/output/diagnostics/cli_traces.json new file mode 100644 index 0000000..114019a --- /dev/null +++ b/.vercel/output/diagnostics/cli_traces.json @@ -0,0 +1 @@ +[{"name":"vc.builder","duration":11410816,"timestamp":1109155148251,"id":"883875fc-d8b5-40c7-8fdd-f96c27a63d1b","parentId":"3583d148-7b32-444b-813e-a786bebb1401","tags":{"name":"@vercel/static-build"},"startTime":1764002346775},{"name":"vc.builder.diagnostics","duration":17,"timestamp":1109166559117,"id":"c6ad9c3e-80a6-4b2c-9d0b-9e6999814dda","parentId":"883875fc-d8b5-40c7-8fdd-f96c27a63d1b","tags":{},"startTime":1764002358186},{"name":"vc.doBuild","duration":11600581,"timestamp":1109154959803,"id":"3583d148-7b32-444b-813e-a786bebb1401","parentId":"dad52c92-34d7-49a1-a8c7-c26d68888fb8","tags":{},"startTime":1764002346587},{"name":"vc","duration":11643513,"timestamp":1109154916896,"id":"dad52c92-34d7-49a1-a8c7-c26d68888fb8","tags":{},"startTime":1764002346544}] \ No newline at end of file diff --git a/.vercel/project.json b/.vercel/project.json new file mode 100644 index 0000000..671db39 --- /dev/null +++ b/.vercel/project.json @@ -0,0 +1,16 @@ +{ + "projectId": "prj_TQf0vM7v0Pz1NyDhm3Ab0Jp4zB2E", + "orgId": "team_dURDB79ODIkvcyPxn5ZVT7xr", + "projectName": "acad-ia", + "settings": { + "createdAt": 1764000675314, + "framework": "vite", + "devCommand": null, + "installCommand": null, + "buildCommand": null, + "outputDirectory": null, + "rootDirectory": null, + "directoryListing": false, + "nodeVersion": "22.x" + } +} diff --git a/bun.lock b/bun.lock index 255f7fe..e540bad 100644 --- a/bun.lock +++ b/bun.lock @@ -32,7 +32,7 @@ "clsx": "^2.1.1", "cmdk": "^1.1.1", "gsap": "^3.13.0", - "jspdf": "^3.0.3", + "jspdf": "^3.0.4", "jspdf-autotable": "^5.0.2", "lucide-react": "^0.540.0", "next-themes": "^0.4.6", @@ -752,7 +752,7 @@ "json5": ["json5@2.2.3", "", { "bin": { "json5": "lib/cli.js" } }, "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="], - "jspdf": ["jspdf@3.0.3", "", { "dependencies": { "@babel/runtime": "^7.26.9", "fast-png": "^6.2.0", "fflate": "^0.8.1" }, "optionalDependencies": { "canvg": "^3.0.11", "core-js": "^3.6.0", "dompurify": "^3.2.4", "html2canvas": "^1.0.0-rc.5" } }, "sha512-eURjAyz5iX1H8BOYAfzvdPfIKK53V7mCpBTe7Kb16PaM8JSXEcUQNBQaiWMI8wY5RvNOPj4GccMjTlfwRBd+oQ=="], + "jspdf": ["jspdf@3.0.4", "", { "dependencies": { "@babel/runtime": "^7.28.4", "fast-png": "^6.2.0", "fflate": "^0.8.1" }, "optionalDependencies": { "canvg": "^3.0.11", "core-js": "^3.6.0", "dompurify": "^3.2.4", "html2canvas": "^1.0.0-rc.5" } }, "sha512-dc6oQ8y37rRcHn316s4ngz/nOjayLF/FFxBF4V9zamQKRqXxyiH1zagkCdktdWhtoQId5K20xt1lB90XzkB+hQ=="], "jspdf-autotable": ["jspdf-autotable@5.0.2", "", { "peerDependencies": { "jspdf": "^2 || ^3" } }, "sha512-YNKeB7qmx3pxOLcNeoqAv3qTS7KuvVwkFe5AduCawpop3NOkBUtqDToxNc225MlNecxT4kP2Zy3z/y/yvGdXUQ=="], @@ -1122,6 +1122,8 @@ "anymatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + "jspdf/@babel/runtime": ["@babel/runtime@7.28.4", "", {}, "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ=="], + "lru-cache/yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="], "parse-entities/@types/unist": ["@types/unist@2.0.11", "", {}, "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="], diff --git a/package-lock.json b/package-lock.json index 6d48975..9d67969 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,7 +34,7 @@ "clsx": "^2.1.1", "cmdk": "^1.1.1", "gsap": "^3.13.0", - "jspdf": "^3.0.3", + "jspdf": "^3.0.4", "jspdf-autotable": "^5.0.2", "lucide-react": "^0.540.0", "next-themes": "^0.4.6", @@ -430,7 +430,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.28.3", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -3713,13 +3715,13 @@ } }, "node_modules/jspdf": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/jspdf/-/jspdf-3.0.3.tgz", - "integrity": "sha512-eURjAyz5iX1H8BOYAfzvdPfIKK53V7mCpBTe7Kb16PaM8JSXEcUQNBQaiWMI8wY5RvNOPj4GccMjTlfwRBd+oQ==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/jspdf/-/jspdf-3.0.4.tgz", + "integrity": "sha512-dc6oQ8y37rRcHn316s4ngz/nOjayLF/FFxBF4V9zamQKRqXxyiH1zagkCdktdWhtoQId5K20xt1lB90XzkB+hQ==", "license": "MIT", "peer": true, "dependencies": { - "@babel/runtime": "^7.26.9", + "@babel/runtime": "^7.28.4", "fast-png": "^6.2.0", "fflate": "^0.8.1" }, diff --git a/package.json b/package.json index 7b7c8d6..facd114 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "clsx": "^2.1.1", "cmdk": "^1.1.1", "gsap": "^3.13.0", - "jspdf": "^3.0.3", + "jspdf": "^3.0.4", "jspdf-autotable": "^5.0.2", "lucide-react": "^0.540.0", "next-themes": "^0.4.6",