Skip to content

Commit 822fabf

Browse files
committed
fix: upgrade visual-editing
1 parent 481f079 commit 822fabf

File tree

12 files changed

+2390
-2550
lines changed

12 files changed

+2390
-2550
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,10 @@ jobs:
2121
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
2222
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: pnpm/action-setup@v4
26-
- uses: actions/setup-node@v4
26+
- uses: actions/setup-node@v5
2727
with:
28-
cache: pnpm
2928
node-version: lts/*
3029
- run: pnpm install --ignore-scripts
3130
- run: pnpm build --filter=./packages/*
@@ -61,11 +60,10 @@ jobs:
6160
run: |
6261
git config --global core.autocrlf false
6362
git config --global core.eol lf
64-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v5
6564
- uses: pnpm/action-setup@v4
66-
- uses: actions/setup-node@v4
65+
- uses: actions/setup-node@v5
6766
with:
68-
cache: pnpm
6967
node-version: ${{ matrix.node }}
7068
- run: pnpm install --loglevel=error --ignore-scripts
7169
- run: pnpm test

.github/workflows/fix-lockfile.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ jobs:
1414
run:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: pnpm/action-setup@v4
19-
- uses: actions/setup-node@v4
19+
- uses: actions/setup-node@v5
2020
with:
21-
cache: pnpm
2221
node-version: lts/*
2322
- run: pnpm install --ignore-scripts --fix-lockfile --no-frozen-lockfile
2423
- run: pnpm dedupe

.github/workflows/prettier.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@ jobs:
1717
name: Can the code be prettier? 🤔
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- uses: pnpm/action-setup@v4
22-
- uses: actions/setup-node@v4
22+
- uses: actions/setup-node@v5
2323
with:
24-
cache: pnpm
2524
node-version: lts/*
2625
- run: pnpm install
2726
- uses: actions/cache@v4

.github/workflows/release-canary.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,13 @@ jobs:
2424
with:
2525
app-id: ${{ secrets.ECOSPARK_APP_ID }}
2626
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
ref: canary
3030
token: ${{ steps.generate-token.outputs.token }}
3131
- uses: pnpm/action-setup@v4
32-
- uses: actions/setup-node@v4
32+
- uses: actions/setup-node@v5
3333
with:
34-
cache: pnpm
3534
node-version: lts/*
3635
- run: pnpm install --ignore-scripts
3736
- run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"

.github/workflows/release-please.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,13 @@ jobs:
3737
token: ${{ steps.generate-token.outputs.token }}
3838

3939
# Publish to NPM on new releases
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
if: ${{ steps.release.outputs.releases_created == 'true' || github.event.inputs.publish == 'true' }}
4242
- uses: pnpm/action-setup@v4
4343
if: ${{ steps.release.outputs.releases_created == 'true' || github.event.inputs.publish == 'true' }}
44-
- uses: actions/setup-node@v4
44+
- uses: actions/setup-node@v5
4545
if: ${{ steps.release.outputs.releases_created == 'true' || github.event.inputs.publish == 'true' }}
4646
with:
47-
cache: pnpm
4847
node-version: lts/*
4948
- name: install deps & build
5049
run: pnpm install --ignore-scripts && pnpm build --filter=!./apps/*

apps/mvp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
"@next/bundle-analyzer": "catalog:",
3030
"@next/env": "catalog:",
3131
"@repo/typescript-config": "workspace:*",
32-
"@tailwindcss/postcss": "^4.1.11",
32+
"@tailwindcss/postcss": "^4.1.13",
3333
"@types/react": "catalog:",
3434
"postcss": "^8.5.6",
35-
"tailwindcss": "^4.1.11",
35+
"tailwindcss": "^4.1.13",
3636
"typescript": "catalog:"
3737
},
3838
"engines": {

apps/static/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
"@next/bundle-analyzer": "catalog:",
3030
"@next/env": "catalog:",
3131
"@repo/typescript-config": "workspace:*",
32-
"@tailwindcss/postcss": "^4.1.11",
32+
"@tailwindcss/postcss": "^4.1.13",
3333
"@types/react": "catalog:",
3434
"postcss": "^8.5.6",
35-
"tailwindcss": "^4.1.11",
35+
"tailwindcss": "^4.1.13",
3636
"typescript": "catalog:"
3737
}
3838
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
},
1818
"dependencies": {
1919
"@sanity/prettier-config": "^2.0.1",
20-
"oxlint": "^1.10.0",
20+
"oxlint": "^1.14.0",
2121
"prettier": "^3.6.2",
2222
"prettier-plugin-tailwindcss": "^0.6.14",
23-
"turbo": "^2.5.5"
23+
"turbo": "^2.5.6"
2424
},
25-
"packageManager": "pnpm@10.14.0",
25+
"packageManager": "pnpm@10.15.1",
2626
"pnpm": {
2727
"overrides": {
2828
"@next/bundle-analyzer": "canary",

packages/next-sanity/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next-sanity",
3-
"version": "10.1.0-canary.10",
3+
"version": "10.1.0-canary.12",
44
"description": "Sanity.io toolkit for Next.js",
55
"keywords": [
66
"sanity",
@@ -126,18 +126,18 @@
126126
},
127127
"browserslist": "extends @sanity/browserslist-config",
128128
"dependencies": {
129-
"@portabletext/react": "^3.2.1",
129+
"@portabletext/react": "^4.0.3",
130130
"@sanity/client": "catalog:",
131-
"@sanity/next-loader": "^2.0.0",
131+
"@sanity/next-loader": "^2.1.2",
132132
"@sanity/preview-url-secret": "catalog:",
133-
"@sanity/visual-editing": "4.0.0-canary.2",
134-
"groq": "^4.3.0",
133+
"@sanity/visual-editing": "4.0.0-canary.4",
134+
"groq": "^4.7.0",
135135
"history": "^5.3.0"
136136
},
137137
"devDependencies": {
138138
"@sanity/browserslist-config": "^1.0.5",
139-
"@sanity/pkg-utils": "^7.11.4",
140-
"@sanity/types": "^4.3.0",
139+
"@sanity/pkg-utils": "^8.1.7",
140+
"@sanity/types": "^4.7.0",
141141
"@sanity/webhook": "4.0.4",
142142
"@types/react": "catalog:",
143143
"@types/react-dom": "catalog:",

packages/sanity-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
".": "./src/index.tsx"
77
},
88
"dependencies": {
9-
"@sanity/assist": "^4.4.7"
9+
"@sanity/assist": "^5.0.0"
1010
},
1111
"devDependencies": {
1212
"@repo/typescript-config": "workspace:*",

0 commit comments

Comments
 (0)