Fix auto site upload #9

Merged
N0tAI merged 2 commits from dev into main 2026-04-03 03:51:13 +00:00
N0tAI commented 2026-04-03 03:50:54 +00:00 (Migrated from github.com)

Fix cloudflare wrangler deploy action by adding a compatibility date to wrangler.jsonc

Fix cloudflare wrangler deploy action by adding a compatibility date to wrangler.jsonc
gemini-code-assist[bot] (Migrated from github.com) reviewed 2026-04-03 03:53:47 +00:00
gemini-code-assist[bot] (Migrated from github.com) left a comment

Code Review

This pull request adds a compatibility_date to the wrangler.jsonc configuration file. Feedback was provided regarding the inconsistent formatting of the new property and a potential deployment issue caused by using a future compatibility date.

## Code Review This pull request adds a `compatibility_date` to the `wrangler.jsonc` configuration file. Feedback was provided regarding the inconsistent formatting of the new property and a potential deployment issue caused by using a future compatibility date.
@ -1,5 +1,6 @@
{
"name": "portfolio-worker",
"compatibility_date":"2026-04-03",
gemini-code-assist[bot] (Migrated from github.com) commented 2026-04-03 03:53:47 +00:00

high

The formatting of this property is inconsistent with the rest of the file; there should be a space after the colon to match the style used for other properties like name and assets. Additionally, Cloudflare Wrangler does not support future compatibility dates; if 2026-04-03 is in the future, the deployment will fail.

	"compatibility_date": "2026-04-03",
![high](https://www.gstatic.com/codereviewagent/high-priority.svg) The formatting of this property is inconsistent with the rest of the file; there should be a space after the colon to match the style used for other properties like `name` and `assets`. Additionally, Cloudflare Wrangler does not support future compatibility dates; if `2026-04-03` is in the future, the deployment will fail. ``` "compatibility_date": "2026-04-03", ```
Sign in to join this conversation.
No description provided.