Skip to content

Commit

Permalink
implement all schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
kmelve committed Aug 7, 2018
1 parent 903db4e commit b7cac4b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions sanity.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
{
"implements": "part:@sanity/base/schema-type",
"path": "podcast.js"
},
{
"implements": "part:@sanity/base/schema-type",
"path": "sponsor.js"
},
{
"implements": "part:@sanity/base/schema-type",
"path": "host.js"
}
]
}
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
export {default as episode} from './episode';
export {default as podcast} from './podcast';
export {default as podcast} from './podcast';
export {default as sponsor} from './sponsor';
export {default as host} from './host';

0 comments on commit b7cac4b

Please sign in to comment.