-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* next: feat: adds support for Create-Studio integration (#7635) fix(deps): Update dev-non-major (#7671) fix(deps): update dependency @sanity/insert-menu to v1.0.10 (#7668) fix(deps): update dependency @sanity/presentation to v1.17.6 (#7669) v3.62.2 fix(deps): Update dev-non-major (#7663) fix(deps): update dependency @sanity/presentation to v1.17.4 (#7662) fix(deps): Update dev-non-major (#7661) v3.62.1 feat(cli): add warning and docs for react-19 and Next.Js combined (#7660)
- Loading branch information
Showing
106 changed files
with
2,915 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "depcheck-test", | ||
"version": "3.62.0", | ||
"version": "3.62.2", | ||
"private": true, | ||
"license": "MIT", | ||
"author": "Sanity.io <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "sanity-page-building-studio", | ||
"version": "3.62.0", | ||
"version": "3.62.2", | ||
"private": true, | ||
"license": "MIT", | ||
"author": "Sanity.io <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "sanity-starter-next-studio", | ||
"version": "3.62.0", | ||
"version": "3.62.2", | ||
"private": true, | ||
"license": "MIT", | ||
"author": "Sanity.io <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "sanity-starter-studio", | ||
"version": "3.62.0", | ||
"version": "3.62.2", | ||
"private": true, | ||
"license": "MIT", | ||
"author": "Sanity.io <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "sanity-strict-studio", | ||
"version": "3.62.0", | ||
"version": "3.62.2", | ||
"private": true, | ||
"license": "MIT", | ||
"author": "Sanity.io <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"ignore": ["styled-components", "react", "react-dom", "sanity"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "test-create-integration-studio", | ||
"version": "3.61.0", | ||
"private": true, | ||
"license": "MIT", | ||
"author": "Sanity.io <[email protected]>", | ||
"scripts": { | ||
"build": "../.bin/sanity build", | ||
"clean": "rimraf .sanity dist", | ||
"deploy": "npx sanity deploy", | ||
"dev": "../.bin/sanity dev", | ||
"lint": "eslint .", | ||
"start": "../.bin/sanity start" | ||
}, | ||
"dependencies": { | ||
"@sanity/code-input": "^4.1.4", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"sanity": "workspace:*", | ||
"styled-components": "^6.1.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import {defineCliConfig} from 'sanity/cli' | ||
|
||
export default defineCliConfig({ | ||
api: { | ||
projectId: 'ppsg7ml5', | ||
dataset: 'test', | ||
}, | ||
|
||
studioHost: 'create-integration-test', | ||
autoUpdates: false, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// eslint-disable-next-line import/no-extraneous-dependencies | ||
import {codeInput} from '@sanity/code-input' | ||
import {defineConfig} from 'sanity' | ||
import {structureTool} from 'sanity/structure' | ||
|
||
import {schemaTypes} from './schema' | ||
|
||
export default defineConfig({ | ||
plugins: [structureTool(), codeInput()], | ||
title: 'Strict', | ||
name: 'default', | ||
projectId: 'ppsg7ml5', | ||
dataset: 'test', | ||
schema: {types: schemaTypes}, | ||
|
||
beta: { | ||
create: { | ||
startInCreateEnabled: true, | ||
fallbackStudioOrigin: 'create-integration-test.sanity.studio', | ||
}, | ||
}, | ||
}) |
Oops, something went wrong.