@objectdocs/site 0.2.7 → 0.2.9

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @objectdocs/site
2
2
 
3
+ ## 0.2.9
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: add .source path alias to tsconfig.json to ensure generated files can be resolved
8
+
9
+ ## 0.2.8
10
+
3
11
  ## 0.2.7
4
12
 
5
13
  ### Patch Changes
package/lib/source.ts CHANGED
@@ -7,7 +7,7 @@
7
7
  */
8
8
 
9
9
  import { loader } from 'fumadocs-core/source';
10
- import { docs, meta } from '../.source/server';
10
+ import { docs, meta } from '../.source/server'; // Relative import to .source in root
11
11
  import { toFumadocsSource } from 'fumadocs-mdx/runtime/server';
12
12
  import { i18n } from './i18n';
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectdocs/site",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "description": "ObjectDocs Site Template",
5
5
  "repository": {
6
6
  "type": "git",
package/tsconfig.json CHANGED
@@ -24,6 +24,9 @@
24
24
  "paths": {
25
25
  "@/*": [
26
26
  "./*"
27
+ ],
28
+ ".source/*": [
29
+ "./.source/*"
27
30
  ]
28
31
  },
29
32
  "target": "ES2017"