Skip to content

Commit 1a2e148

Browse files
committed
reconcile dependencies
1 parent 2f01493 commit 1a2e148

58 files changed

Lines changed: 15300 additions & 2707 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.npmrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
shared-workspace-lockfile = true
22
auto-install-peers = true
3-
node-linker=hoisted

.prettierignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Only apply prettier to Cloudflare directories
2+
*
3+
4+
# Include Cloudflare directories
5+
!packages/cloudflare/
6+
!packages/cloudflare/**
7+
!create-cloudflare/
8+
!create-cloudflare/**
9+
!examples-cloudflare/
10+
!examples-cloudflare/**
11+
12+
# Ignore build artifacts and generated files within included directories
13+
.next
14+
.wrangler
15+
pnpm-lock.yaml
16+
.vscode/setting.json
17+
test-fixtures
18+
test-snapshots
19+
playwright-report

.prettierrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"printWidth": 110,
3+
"singleQuote": false,
4+
"semi": true,
5+
"useTabs": true,
6+
"trailingComma": "es5",
7+
"overrides": [
8+
{
9+
"files": ["**/wrangler.jsonc"],
10+
"options": {
11+
"trailingComma": "none"
12+
}
13+
}
14+
]
15+
}

biome.jsonc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@
22
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
33
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
44
"files": {
5-
"ignoreUnknown": true
5+
"ignoreUnknown": true,
6+
"include": [
7+
"packages/open-next/**",
8+
"packages/tests-unit/**",
9+
"packages/tests-e2e/**",
10+
"packages/utils/**",
11+
"examples/**"
12+
],
13+
"ignore": [
14+
"packages/cloudflare/**",
15+
"create-cloudflare/**",
16+
"examples-cloudflare/**"
17+
]
618
},
719
"organizeImports": { "enabled": true },
820
"formatter": {

create-cloudflare/next/wrangler.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55
{
66
"$schema": "node_modules/wrangler/config-schema.json",
7-
"name": "<WORKER_NAME>",
7+
"name": "worker_name",
88
"main": ".open-next/worker.js",
99
"compatibility_date": "2025-12-01",
1010
"compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"],
@@ -22,7 +22,7 @@
2222
// Self-reference service binding, the service name must match the worker name
2323
// see https://opennext.js.org/cloudflare/caching
2424
"binding": "WORKER_SELF_REFERENCE",
25-
"service": "<WORKER_NAME>"
25+
"service": "worker_name"
2626
}
2727
],
2828
"observability": {

examples-cloudflare/bugs/gh-119/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "gh-119",
2+
"name": "examples-cloudflare/gh-119",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {

examples-cloudflare/bugs/gh-219/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "gh-219",
2+
"name": "examples-cloudflare/gh-219",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {

examples-cloudflare/bugs/gh-223/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "gh-223",
2+
"name": "examples-cloudflare/gh-223",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "common",
2+
"name": "examples-cloudflare/common",
33
"private": true,
44
"type": "module"
55
}

examples-cloudflare/create-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "create-next-app",
2+
"name": "examples-cloudflare/create-next-app",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {

0 commit comments

Comments
 (0)