create-kofi-stack 1.2.8 → 1.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/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3094,6 +3094,10 @@ async function generateSharedConfigs(targetDir) {
|
|
|
3094
3094
|
name: "@repo/config-typescript",
|
|
3095
3095
|
version: "0.1.0",
|
|
3096
3096
|
private: true,
|
|
3097
|
+
exports: {
|
|
3098
|
+
"./base.json": "./base.json",
|
|
3099
|
+
"./nextjs.json": "./nextjs.json"
|
|
3100
|
+
},
|
|
3097
3101
|
files: ["base.json", "nextjs.json"]
|
|
3098
3102
|
};
|
|
3099
3103
|
await writeJSON(
|
|
@@ -4299,7 +4303,7 @@ export const source = loader({
|
|
|
4299
4303
|
await writeFile(path16.join(docsDir, "src/lib/source.ts"), content);
|
|
4300
4304
|
}
|
|
4301
4305
|
async function generateFumadocsAppFiles(config, docsDir) {
|
|
4302
|
-
const layoutContent = `import { RootProvider } from 'fumadocs-ui/
|
|
4306
|
+
const layoutContent = `import { RootProvider } from 'fumadocs-ui/providers'
|
|
4303
4307
|
import { Inter } from 'next/font/google'
|
|
4304
4308
|
import type { Metadata } from 'next'
|
|
4305
4309
|
import type { ReactNode } from 'react'
|