@farming-labs/docs 0.0.2-beta.8 → 0.0.2-beta.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.
@@ -162,21 +162,21 @@ function nextRootLayoutConfigImport(useAlias) {
162
162
  function nextDocsLayoutConfigImport(useAlias) {
163
163
  return useAlias ? "@/docs.config" : "../../docs.config";
164
164
  }
165
- /** Config import for SvelteKit src/lib/docs.server.ts → src/lib/docs.config.js */
165
+ /** Config import for SvelteKit src/lib/docs.server.ts → src/lib/docs.config */
166
166
  function svelteServerConfigImport(useAlias) {
167
- return useAlias ? "$lib/docs.config.js" : "./docs.config.js";
167
+ return useAlias ? "$lib/docs.config" : "./docs.config";
168
168
  }
169
- /** Config import for SvelteKit src/routes/{entry}/+layout.svelte → src/lib/docs.config.js */
169
+ /** Config import for SvelteKit src/routes/{entry}/+layout.svelte → src/lib/docs.config */
170
170
  function svelteLayoutConfigImport(useAlias) {
171
- return useAlias ? "$lib/docs.config.js" : "../../lib/docs.config.js";
171
+ return useAlias ? "$lib/docs.config" : "../../lib/docs.config";
172
172
  }
173
- /** Config import for SvelteKit src/routes/{entry}/[...slug]/+page.svelte → src/lib/docs.config.js */
173
+ /** Config import for SvelteKit src/routes/{entry}/[...slug]/+page.svelte → src/lib/docs.config */
174
174
  function sveltePageConfigImport(useAlias) {
175
- return useAlias ? "$lib/docs.config.js" : "../../../lib/docs.config.js";
175
+ return useAlias ? "$lib/docs.config" : "../../../lib/docs.config";
176
176
  }
177
- /** Server import for SvelteKit +layout.server.js → src/lib/docs.server.js */
177
+ /** Server import for SvelteKit +layout.server.js → src/lib/docs.server */
178
178
  function svelteLayoutServerImport(useAlias) {
179
- return useAlias ? "$lib/docs.server.js" : "../../lib/docs.server.js";
179
+ return useAlias ? "$lib/docs.server" : "../../lib/docs.server";
180
180
  }
181
181
  function docsConfigTemplate(cfg) {
182
182
  const t = getThemeInfo(cfg.theme);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farming-labs/docs",
3
- "version": "0.0.2-beta.8",
3
+ "version": "0.0.2-beta.9",
4
4
  "description": "Modern, flexible MDX-based docs framework — core types, config, and CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",