sanity-plugin-tnd-docs 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -17,7 +17,7 @@ import { defineConfig } from 'sanity'
17
17
  import { tndDocs } from 'sanity-plugin-tnd-docs'
18
18
 
19
19
  // Import your markdown files using Vite's import.meta.glob
20
- const docs = import.meta.glob('/docs/**/*.md', { eager: true, query: '?raw' import: 'default'})
20
+ const docs = import.meta.glob('/docs/**/*.md', { eager: true, query: '?raw', import: 'default'})
21
21
 
22
22
  export default defineConfig({
23
23
  // ...
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sanity-plugin-tnd-docs",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Adding documentation to your Sanity Studio using markdown files",
5
5
  "keywords": [
6
6
  "sanity",
@@ -67,7 +67,7 @@
67
67
  "typescript": "^5.9.3"
68
68
  },
69
69
  "peerDependencies": {
70
- "react": "^18",
70
+ "react": "^18 || ^19",
71
71
  "sanity": "^3"
72
72
  },
73
73
  "engines": {