Skip to content

Commit

Permalink
chore: upgrading package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanpodila committed Oct 27, 2024
1 parent 0815bf6 commit 126f5f4
Show file tree
Hide file tree
Showing 18 changed files with 352 additions and 370 deletions.
8 changes: 4 additions & 4 deletions apps/demo-studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"sanity"
],
"dependencies": {
"@vyuh/sanity-plugin-structure": "^1.26.1",
"@vyuh/sanity-plugin-structure": "^1.27.1",
"@vyuh/sanity-schema-auth": "^1.26.0",
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-onboarding": "^1.26.0",
"@vyuh/sanity-schema-system": "^1.26.1",
"food-sanity-schema": "workspace:*",
"@vyuh/sanity-schema-system": "^1.27.1",
"conference-sanity-schema": "workspace:*",
"food-sanity-schema": "workspace:*",
"misc-sanity-schema": "workspace:*",
"puzzles-sanity-schema": "workspace:*",
"react": "^18.3.1",
Expand Down
4 changes: 2 additions & 2 deletions examples/conference/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"linkDirectory": false
},
"dependencies": {
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-system": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-system": "^1.27.1",
"react": "^18.3.1",
"react-icons": "^5.3.0",
"sanity": "^3.62.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/conference/schema/src/documents/speaker.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// speaker schema
import { defineField, defineType } from 'sanity';
import { HiCalendarDays as Icon } from 'react-icons/hi2';
import { MdCoPresent as Icon } from 'react-icons/md';

export const speaker = defineType({
name: 'conf.speaker',
Expand Down
2 changes: 1 addition & 1 deletion examples/conference/schema/src/documents/track.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineField, defineType } from 'sanity';
import { HiCalendarDays as Icon } from 'react-icons/hi2';
import { MdOutlineCategory as Icon } from 'react-icons/md';

export const track = defineType({
name: 'conf.track',
Expand Down
6 changes: 3 additions & 3 deletions examples/conference/schema/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import { track } from './documents/track.ts';
import { confBreak, schedule, scheduleDay } from './documents/schedule.ts';

export const conference = new FeatureDescriptor({
name: 'schema',
title: 'Schema',
description: 'Schema for the Schema feature',
name: 'conferences',
title: 'Conferences',
description: 'The Conferences feature to manage conference data',
contents: [
new DocumentDescriptor({
documentTypes: [
Expand Down
4 changes: 2 additions & 2 deletions examples/food/food/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
},
"private": true,
"dependencies": {
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-system": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-system": "^1.27.1",
"react-icons": "^5.3.0",
"sanity": "^3.62.2"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/misc/misc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"linkDirectory": false
},
"dependencies": {
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-system": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-system": "^1.27.1",
"react": "^18.3.1",
"react-icons": "^5.3.0",
"sanity": "^3.62.2"
Expand Down
4 changes: 2 additions & 2 deletions examples/puzzles/puzzles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
},
"private": true,
"dependencies": {
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-system": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-system": "^1.27.1",
"react-icons": "^5.3.0",
"sanity": "^3.62.2"
},
Expand Down
2 changes: 2 additions & 0 deletions examples/settings/settings-sanity-schema/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const tabSchema: SchemaTypeDefinition = defineType({
}),
],
});
// @ts-ignore
export const settings = new FeatureDescriptor({
name: 'common',
title: 'Common Settings',
Expand Down Expand Up @@ -76,6 +77,7 @@ export const settings = new FeatureDescriptor({
name: 'tabs',
title: 'Tabs',
type: 'array',
// @ts-ignore
of: [tabSchema],
validation: (Rule: any) => Rule.min(2),
}),
Expand Down
4 changes: 2 additions & 2 deletions examples/settings/settings-sanity-schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"main": "index.tsx",
"private": true,
"dependencies": {
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-system": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-system": "^1.27.1",
"react": "^18.3.1",
"react-icons": "^5.3.0",
"sanity": "^3.62.2"
Expand Down
4 changes: 2 additions & 2 deletions examples/tmdb/tmdb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
},
"private": true,
"dependencies": {
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-system": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-system": "^1.27.1",
"react-icons": "^5.3.0",
"sanity": "^3.62.2"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/tmdb/tmdb/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { genresConfig } from './api-config/genres-config';

export const tmdb = new FeatureDescriptor({
name: 'tmdb',
title: 'Tmdb',
title: 'Tmdb Movies',
description: 'Schema for the Tmdb feature',
contents: [
new RouteDescriptor({
Expand Down
4 changes: 2 additions & 2 deletions examples/unsplash/unsplash/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"linkDirectory": false
},
"dependencies": {
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-system": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-system": "^1.27.1",
"react": "^18.3.1",
"react-icons": "^5.3.0",
"sanity": "^3.62.2"
Expand Down
4 changes: 2 additions & 2 deletions examples/wonderous/wonderous/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
},
"private": true,
"dependencies": {
"@vyuh/sanity-schema-core": "^1.26.1",
"@vyuh/sanity-schema-system": "^1.26.1",
"@vyuh/sanity-schema-core": "^1.27.1",
"@vyuh/sanity-schema-system": "^1.27.1",
"react-icons": "^5.3.0",
"sanity": "^3.62.2"
},
Expand Down
Loading

0 comments on commit 126f5f4

Please sign in to comment.